refactor: using word depot in rear instead of admin

This commit is contained in:
2024-07-20 09:34:51 +02:00
parent a26e17a064
commit 966291dbd9
38 changed files with 1112 additions and 72 deletions
+41
View File
@@ -0,0 +1,41 @@
{% if sections %}
{% for section in sections %}
<div
class="section-{{ section.key }} module{% if section.section_url in request.path|urlencode %} current-section{% endif %} ui short scrolling container">
<table class="ui very compact celled table head stuck unstackable">
<caption>
<a href="{{ section.section_url }}" class="section"
title="Models in the {{ name }} Section">{{ section.name }}</a>
</caption>
{% for model in section.models %}
<tr class="model-{{ model.key }}{% if model.model_url in request.path|urlencode %} current-model{% endif %}">
{% if model.model_url %}
<th scope="row"><a href="{{ model.model_url }}" {% if model.model_url in request.path|urlencode %}
aria-current="page" {% endif %}>{{ model.name }}</a></th>
{% else %}
<th scope="row">{{ model.name }}</th>
{% endif %}
{% if model.add_url %}
<td><a href="{{ model.add_url }}" class="addlink">{{ translate( 'Add') }}</a></td>
{% else %}
<td></td>
{% endif %}
{% if model.model_url and show_changelinks %}
{% if model.view_only %}
<td><a href="{{ model.model_url }}" class="viewlink">{{ translate( 'View') }}</a></td>
{% else %}
<td><a href="{{ model.model_url }}" class="changelink">{{ translate( 'Change') }}</a></td>
{% endif %}
{% elif show_changelinks %}
<td></td>
{% endif %}
</tr>
{% endfor %}
</table>
</div>
{% endfor %}
{% else %}
<p>{{ translate( 'You dont have permission to view or edit anything.') }}</p>
{% endif %}