chrono/chrono/manager/templates/chrono/manager_replace_exceptions....

21 lines
568 B
HTML

{% extends "chrono/manager_import_exceptions.html" %}
{% load i18n %}
{% block appbar %}
<h2>{% trans "Replace exceptions" %}</h2>
{% endblock %}
{% block content %}
<form method="post" enctype="multipart/form-data">
<p class="notice">{% trans "To replace existing exceptions, please upload a new file." %}</p>
{% csrf_token %}
{{ form.as_p }}
<p>
</p>
<div class="buttons">
<button>{% trans "Replace" %}</button>
<a class="cancel" href="{{ view.get_success_url }">{% trans 'Cancel' %}</a>
</div>
</form>
{% endblock %}