71 lines
2.2 KiB
HTML
71 lines
2.2 KiB
HTML
{% extends "admin/base_site.html" %}
|
|
{% load i18n admin_static %}
|
|
{% load url from future %}
|
|
|
|
{% block extrastyle %}{{ block.super }}<link rel="stylesheet" type="text/css" href="{% static "admin/css/dashboard.css" %}" />{% endblock %}
|
|
|
|
{% block coltype %}colMS{% endblock %}
|
|
|
|
{% block bodyclass %}dashboard{% endblock %}
|
|
|
|
{% block breadcrumbs %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="content-main">
|
|
|
|
{% if app_list %}
|
|
{% for app in app_list %}
|
|
<div class="module">
|
|
<table>
|
|
<caption>
|
|
<a href="{{ app.app_url }}" class="section" title="{% blocktrans with name=app.name %}Models in the {{ name }} application{% endblocktrans %}">
|
|
{% blocktrans with name=app.name %}{{ name }}{% endblocktrans %}
|
|
</a>
|
|
</caption>
|
|
{% for model in app.models %}
|
|
<tr>
|
|
{% if model.admin_url %}
|
|
<th scope="row"><a href="{{ model.admin_url }}">{{ model.name }}</a></th>
|
|
{% else %}
|
|
<th scope="row">{{ model.name }}</th>
|
|
{% endif %}
|
|
|
|
{% if model.add_url %}
|
|
<td><a href="{{ model.add_url }}" class="addlink">{% trans 'Add' %}</a></td>
|
|
{% else %}
|
|
<td> </td>
|
|
{% endif %}
|
|
|
|
{% if model.admin_url %}
|
|
<td><a href="{{ model.admin_url }}" class="changelink">{% trans 'Change' %}</a></td>
|
|
{% else %}
|
|
<td> </td>
|
|
{% endif %}
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
{% endfor %}
|
|
{% else %}
|
|
<p>{% trans "You don't have permission to edit anything." %}</p>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
<div id="content-related">
|
|
<div class="module" id="custom-actions-module">
|
|
<h2>Interfaces spécifiques</h2>
|
|
<ul>
|
|
<li><a href="{% url 'attribution' %}">Attributions des stages</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="module" id="custom-actions-module">
|
|
<h2>Importation/exportation</h2>
|
|
<ul>
|
|
<li><a href="{% url 'tabimport' %}">Importer des données</a></li>
|
|
<li><a href="{% url 'stages_export' %}">Exporter les données de stages</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|