1 {% extends 'admin/base_site.html' %}
2 {% load i18n adminmedia form_utils_tags %}
4 {% block title %}RH - Recrutement{% endblock %}
5 {% block titre %}Ressources humaines{% endblock %}
6 {% block sous_titre %}Envoyer courriel aux candidats{% endblock %}
12 <div id=
"content-main">
13 {% block object-tools %}{% endblock %}
16 <h2>Envoyer un courriel aux candidats
</h2>
18 <form action=
"" method=
"post">
21 <td>Candidats sélectionnés
</td>
23 <select name=
"candidats" multiple=
"True">
24 {% for c in form.candidats %}
25 <option selected=
"selected" value=
"{{ c.nom }}_{{c.prenom}}_{{c.id}}">{{c}}
</option>
31 <td>Modèle de courriel
</td>
37 <td>{{ form.sujet.label }}
</td>
38 <td>{{ form.sujet }}
</td>
41 <td>{{ form.plain_text.label }}
</td>
42 <td>{{ form.plain_text }}
43 <p class=
"help">{{ form.plain_text.help_text }}
</p>
48 <td>{{ form.html.label }}
</td>
50 <p class=
"help">{{ form.html.help_text }}
</p>
54 <div class=
"submit-row">
55 <input type=
"submit" name=
"_save" class=
"default" value=
"Envoyer">