mirror of
https://github.com/fergalmoran/ferglie.git
synced 2025-12-22 09:17:55 +00:00
24 lines
523 B
HTML
Executable File
24 lines
523 B
HTML
Executable File
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<h1>HELLO SAILOR!</h1>
|
|
<form action="{% url 'urls:create' %}" method="post">
|
|
{% csrf_token %}
|
|
<label for="url">Url: </label>
|
|
<input type="text" id="url" name="url" value="">
|
|
<input type="submit"/>
|
|
</form>
|
|
|
|
{% if error_message %}
|
|
<h5>{{ error_message }}</h5>
|
|
{% endif %}
|
|
|
|
{% if latest_url_list %}
|
|
<ul>
|
|
{% for url in latest_url_list %}
|
|
<li><a href="{% url 'urls:detail' url.id %}">{{ url.url }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
{% endblock %}
|