forked from DGNum/gestioCOF
20 lines
825 B
HTML
20 lines
825 B
HTML
{% extends "base_title.html" %}
|
|
|
|
{% block homelink %}
|
|
{% endblock %}
|
|
|
|
{% block realcontent %}
|
|
<h2>Liens utiles du COF</h2>
|
|
<h3>COF</h3>
|
|
<ul>
|
|
<li><a href="{% url 'gestioncof.views.export_members' %}">Export des membres du COF</a></li>
|
|
<li><a href="{% url 'gestioncof.views.liste_diffcof' %}">Diffusion COF</a></li>
|
|
</ul>
|
|
|
|
<h3>Mega</h3>
|
|
<ul>
|
|
<li><a href="{% url 'gestioncof.views.export_mega_participants' %}">Export des non-orgas uniquement</a></li>
|
|
<li><a href="{% url 'gestioncof.views.export_mega_orgas' %}">Export des orgas uniquement</a></li>
|
|
<li><a href="{% url 'gestioncof.views.export_mega' %}">Export de tout le monde</a></li>
|
|
</ul>
|
|
{% endblock %}
|