gpp/port/templates/index.html

14 lines
370 B
HTML

{% extends "base.html" %}
{% block content %}
<form action="{% url 'index:new_stay' %}"
method="post">
{% csrf_token %}
{% block form %}
<a href="{% url 'index:new_stay' %}">New Stay</a>
{% endblock %}
</form>
{% block formnew %}
{% endblock %}
<a href="{% url 'index:reset_session' %}">Reset Session</a>
{% endblock %}