arrowcounter/counter/templates/target/edit.html
Claudio Maggioni (maggicl) 4848698d63 Added translations in italian
2019-07-27 13:58:09 +02:00

27 lines
689 B
HTML

{# vim: set ts=2 sw=2 et tw=80: #}
{% extends "base.html" %}
{% load static %}
{% load i18n %}
{% block title %}{% trans "Set yearly target" %}{% endblock %}
{% block content %}
<h1 class="center">{% trans "Set yearly target" %}</h1>
<form method="post" id="edit-target-form">
<div class="col s12 card">
<div class="card-content">
{% csrf_token %}
<div class="row">
{{ form.as_p }}
</div>
</div>
<div class="card-action">
<a href="#"><button type="submit">{% trans "Save" %}</button></a>
<a href="{% url "target_delete" %}"><button type="button">
{% trans "Remove" %}</button></a>
</div>
</div>
</form>
{% endblock %}