1 {% extends 'admin/base_site.html' %}
2 {% load i18n adminmedia form_utils_tags %}
4 {% block title %}RH - Recrutement{% endblock %}
5 {% block sous_titre %}Envoyer courriel aux candidats{% endblock %}
11 <div id=
"content-main">
12 {% block object-tools %}{% endblock %}
15 <h2>Envoyer un courriel aux candidats
</h2>
17 <form action=
"" method=
"post">
20 <td>Candidats sélectionnés
</td>
22 <select name=
"candidats" multiple=
"True">
23 {% for c in form.candidats %}
24 <option selected=
"selected" value=
"{{ c.nom }}_{{c.prenom}}_{{c.id}}">{{c}}
</option>
30 <td>Modèle de courriel
</td>
36 <td>{{ form.sujet.label }}
</td>
37 <td>{{ form.sujet }}
</td>
40 <td>{{ form.plain_text.label }}
</td>
41 <td>{{ form.plain_text }}
42 <p class=
"help">{{ form.plain_text.help_text }}
</p>
47 <td>{{ form.html.label }}
</td>
49 <p class=
"help">{{ form.html.help_text }}
</p>
53 <div class=
"submit-row">
54 <input type=
"submit" name=
"_save" class=
"default" value=
"Envoyer">