Home page slightly refactored
This commit is contained in:
parent
6abfe6487a
commit
541f1c0e21
1 changed files with 12 additions and 31 deletions
|
|
@ -46,11 +46,6 @@
|
|||
</table>
|
||||
</div>
|
||||
{% endfor %}
|
||||
<ul>
|
||||
<li><a href="{% url 'attribution' %}">Attributions des stages</a></li>
|
||||
<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>
|
||||
{% else %}
|
||||
<p>{% trans "You don't have permission to edit anything." %}</p>
|
||||
{% endif %}
|
||||
|
|
@ -59,32 +54,18 @@
|
|||
|
||||
{% block sidebar %}
|
||||
<div id="content-related">
|
||||
<div class="module" id="recent-actions-module">
|
||||
<h2>{% trans 'Recent Actions' %}</h2>
|
||||
<h3>{% trans 'My Actions' %}</h3>
|
||||
{% load log %}
|
||||
{% get_admin_log 10 as admin_log for_user user %}
|
||||
{% if not admin_log %}
|
||||
<p>{% trans 'None available' %}</p>
|
||||
{% else %}
|
||||
<ul class="actionlist">
|
||||
{% for entry in admin_log %}
|
||||
<li class="{% if entry.is_addition %}addlink{% endif %}{% if entry.is_change %}changelink{% endif %}{% if entry.is_deletion %}deletelink{% endif %}">
|
||||
{% if entry.is_deletion or not entry.get_admin_url %}
|
||||
{{ entry.object_repr }}
|
||||
{% else %}
|
||||
<a href="{{ entry.get_admin_url }}">{{ entry.object_repr }}</a>
|
||||
{% endif %}
|
||||
<br/>
|
||||
{% if entry.content_type %}
|
||||
<span class="mini quiet">{% filter capfirst %}{% trans entry.content_type.name %}{% endfilter %}</span>
|
||||
{% else %}
|
||||
<span class="mini quiet">{% trans 'Unknown content' %}</span>
|
||||
{% endif %}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
<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 %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue