Added a block "links" to base.html and added some links on top of the page to a few of the templates. Also added missing mock data for three fields.
1 parent a382419 commit b63969911a25df7532aff05ffc428017eec5afae
@Anna Granudd Anna Granudd authored on 4 Aug 2010
Showing 5 changed files
View
3
■■
mockdata.py
self.info['topics_bodylines_limit'] = 9
self.info['topics_enabled'] = True
self.info['unsubscribe_policy'] = 9
self.info['welcome_msg'] = 'Welcome message lorem ipsum dolor sit'
self.info['advertised'] = True
self.info['archive'] = True
self.info['archive_private'] = True
cls.__init__ = __init__
 
return cls
 
View
7
templates/mailman-django/base.html
 
<a id="logo" href="{% url list_index %}"></a>
 
<div id="content">
<p>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, you can <a href="{% url list_new %}">create</a> new lists and you can subscribe to lists.</p>
<p>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.
{% block links %}{% endblock %}
</p>
 
{% block content %}{% endblock %}
 
</div>
</div>
View
templates/mailman-django/lists/created.html
View
templates/mailman-django/lists/mass_subscribe.html
View
templates/mailman-django/lists/settings.html