This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
biomon/src/biomon/templates/biomon/reader_form.html

15 lines
484 B
HTML

{% extends "biomon/base.html" %}
{% load i18n %}
{% block content-1-right %}
<form action="" method="post" class="default-form">{% csrf_token %}
{% trans "Add or edit a reader" %}
{{ form.as_p }}
<input type="submit" value="{% trans 'Validate' %}" />
</form>
<div id="buttons">
{% if room %}<a href="{% url 'reader_delete' pk=room.pk %}" class="button">{% trans "Delete" %}</a>{% endif %}
<a href="{% url 'reader_list' %}" class="button">{% trans "Back" %}</a>
</div>
{% endblock %}