label_form.html
608 Bytes
{% extends "base_page.html" %}
{# Set the title that will be used in base_page #}
{% if label['id'] and label['id'] != '' %}
{% set subtitle = "Modifier le label "+ label['name'] %}
{% else %}
{% set subtitle = "Ajouter un nouveau label" %}
{% endif %}
{% block content %}
<!-- Invisible span to define wich ul and a in the navbar are actived -->
<span id="nav_actived" style="display: none">admin,label_edit</span>
<form id="label_form" class="pdc-form" action="{{ url_for('main.label_edit') }}" method="post">
<input class="pdc-form-submit" type="submit" value="Valider">
</form>
{% endblock %}