Reorganize code.
[audio.git] / apps / archive / templates / archive / base.html
diff --git a/apps/archive/templates/archive/base.html b/apps/archive/templates/archive/base.html
deleted file mode 100644 (file)
index 8ec34e9..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-{% extends "base.html" %}
-{% load i18n %}
-
-{% block repo-zones-nav %}
-    <a {% if division = "new" %}class="active" {% endif %}href="{% url 'list_new' %}">{% trans "New" %}</a>
-    <a {% if division = "unpublished" %}class="active" {% endif %}href="{% url 'list_unpublished' %}">{% trans "Unpublished" %}</a>
-    <a {% if division = "publishing" %}class="active" {% endif %}href="{% url 'list_publishing' %}">{% trans "Publishing" %}</a>
-    <a {% if division = "published" %}class="active" {% endif %}href="{% url 'list_published' %}">{% trans "Published" %}</a>
-    <a {% if division = "unmanaged" %}class="active" {% endif %}href="{% url 'list_unmanaged' %}">{% trans "Archive" %}</a>
-    {% if user.is_staff %}
-        <a href='{% url "admin:archive_project_changelist" %}'>{% trans "Projects" %}</a>
-    {% endif %}
-    {% if user.is_authenticated %}
-        <a href="{% url 'logout' %}" style='float: right;'>{% trans "Logout" %}</a>
-    {% else %}
-        <a href="{% url 'login' %}" style='float: right;'>{% trans "Login" %}</a>
-    {% endif %}
-    {% if user.is_staff %}
-        <a href='{% url "admin:index" %}' style='float: right;'>{% trans "Administration" %}</a>
-    {% endif %}
-    {% if user.is_authenticated %}
-        <span style='float: right;'>{{ user }}</span>
-    {% endif %}
-    <div class='clr' ></div>
-{% endblock %}