forked from DGNum/gestioCOF
1aed36330f
- Proper use of include - Defining namespaces (I do not use them for now because many urls are going to change) - Do not try to reverse with old-style references: 'cof.views.XXX'
13 lines
396 B
HTML
13 lines
396 B
HTML
{% extends "base_title.html" %}
|
|
|
|
{% block homelink %}
|
|
{% endblock %}
|
|
|
|
{% block realcontent %}
|
|
<h2>Liens utiles du BdA</h2>
|
|
<h3>Listes mail</h3>
|
|
<ul>
|
|
<li><a href="{% url 'liste_bdadiff' %}">BdA diffusion</a></li>
|
|
<li><a href="{% url 'liste_bdarevente' %}">BdA revente</a></li>
|
|
</ul>
|
|
{% endblock %}
|