fixed wrong method call for links in navigation & missing '' for %trans tag
1 parent fdbacfe commit 8128984ce9805b12cbbf83b0adf4097e627b437d
@benste benste authored on 31 May 2011
Showing 2 changed files
View
6
templates/mailman-django/base.html
<a id="logo" href="{% url list_index %}"></a>
 
<div id="content">
<p>
{% url list index as url_list_index %}
{% url list new as url_list_new %}
{% url list index as url_list_index %}
{% url list_index as url_list_index %}
{% url list_new as url_list_new %}
{% url list_index as url_list_index %}
{% blocktrans %}
This is a draft of a Mailman3 django client. It's not a finished design. For now you can view a <a href="{{ url_list_index }}">list</a> of existing mailing lists and you can <a href="{{ url_list_new }}">create</a> new lists.
{% endblocktrans %}
{% block links %}{% endblock %}
View
4
templates/mailman-django/lists/new.html
{% block content %}
 
<h1>{% trans "Create a new list" %}</h1>
 
<p id=logout><a href="{% url logout %}">{% trans Logout %}</a></p>
<p id=logout><a href="{% url logout %}">{% trans "Logout" %}</a></p>
 
<form action="{% url list_new %}" method="post" class="newlist">
 
{{ form.as_div }}
 
<div class="field">
<button type="submit">{% trans Create List %}</button>
<button type="submit">{% trans "Create List" %}</button>
</div>
 
</form>
{% endblock %}