maillinglist_list.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {% extends "base.html" %}
  2. {% block title %}Listes mail - {{ block.super }}{% endblock %}
  3. {% block content %}
  4. <h2>Listes mail : mes abonnements</h2>
  5. <style>
  6. table {
  7. }
  8. </style>
  9. {% for message in messages %}
  10. <div class="message {{ message.tags }}">{{ message }}</div>
  11. {% endfor %}
  12. <p>
  13. Dans ce tableau, tu peux gérer toi-même tes abonnements/désabonnements aux
  14. listes qui sont en libre accès pour les membres.
  15. </p>
  16. <form action="" method="post" id="mail-list-subscriptions">{% csrf_token %}
  17. {{ formset.management_form }}
  18. <table class="full-width">
  19. <thead>
  20. <tr>
  21. <th>Liste</th>
  22. <th class="select-col">Abonnement</th>
  23. <th>Description</th>
  24. </tr>
  25. </thead>
  26. <tbody>
  27. {% for form in formset %}
  28. <tr>
  29. <td>{{ form.initial.maillinglist }}</td>
  30. <td>{{ form.maillinglist }}{{ form.subscribed }}</td>
  31. <td>{{ form.initial.maillinglist.description|linebreaks }}</td>
  32. </tr>
  33. {% endfor %}
  34. </tbody>
  35. </table>
  36. <input type="submit" class="button" value="Enregistrer mes paramètres d'abonnement" />
  37. </form>
  38. {% endblock %}