forked from DGNum/gestioCOF
19 lines
701 B
HTML
19 lines
701 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>
|
|
</ul>
|
|
|
|
<h3>Mega</h3>
|
|
<ul>
|
|
<li><a href="{% url gestioncof.views.export_mega_participants %}">Export des participants</a></li>
|
|
<li><a href="{% url gestioncof.views.export_mega_orgas %}">Export des orgas</a></li>
|
|
<li><a href="{% url gestioncof.views.export_mega %}">Export de tout le monde</a></li>
|
|
</ul>
|
|
{% endblock %}
|