5     <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
 
   6     <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}style.css" />
 
   7     <title>{% trans "Audiobook repository" %}</title>
 
  11 <div id="repo-zones-nav">
 
  12     <a {% if division = "new" %}class="active" {% endif %}href="{% url list_new %}">{% trans "New" %}</a>
 
  13     <a {% if division = "unpublished" %}class="active" {% endif %}href="{% url list_unpublished %}">{% trans "Unpublished" %}</a>
 
  14     <a {% if division = "published" %}class="active" {% endif %}href="{% url list_published %}">{% trans "Published" %}</a>
 
  15     <a {% if division = "unmanaged" %}class="active" {% endif %}href="{% url list_unmanaged %}">{% trans "Archive" %}</a>
 
  16     <div class='clr' ></div>
 
  20 {% block messages %}{% endblock %}
 
  24 {% block content %}{% endblock %}