init
This commit is contained in:
25
backend-django/backend/templates/admin/taux_cible_soff.html
Normal file
25
backend-django/backend/templates/admin/taux_cible_soff.html
Normal file
@@ -0,0 +1,25 @@
|
||||
{% extends "admin/base_site.html" %}
|
||||
|
||||
{% block content %}
|
||||
<form action="" method="post">
|
||||
{% csrf_token %}
|
||||
<p>
|
||||
Entrer le nouveau taux cible d'armement pour la catégorie SOFF pour les formations-emplois sélectionnées
|
||||
</p>
|
||||
<ul>
|
||||
{% for fe in formations_emplois %}
|
||||
<li>
|
||||
{{ fe.fe_code }} — {{ fe.fe_libelle }}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% for obj in formations_emplois %}
|
||||
<input type="hidden" name="{{ action_checkbox_name }}" value="{{ obj.pk }}">
|
||||
{% endfor %}
|
||||
{# <input type="text" name="taux_armement_cli" value="POMME"/>#}
|
||||
{{ form.taux_armement_cible }}
|
||||
<br/>
|
||||
<input type="hidden" name="action" value="{{ do_action }}"/>
|
||||
<input type="submit" name="apply" value="Modifier le taux cible"/>
|
||||
</form>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user