Attempts at getting a settings page to work, currently mostly a static
prototype with some hooks.
1 parent f782959 commit ea320ba049a0bed379e91b745d2d9acceed0dc19
@Terri Oda Terri Oda authored on 16 Mar 2012
Showing 2 changed files
View
42
src/mailmanweb/templates/mailmanweb/user_mailmansettings.html
{% load i18n %}
 
{% block main %}
{% include 'mailmanweb/menu/user_nav.html' %}
<h1>{{ user }}'s Profile</h1>
<h1>{{ user }}'s List Settings</h1>
 
<p><strong>Mailman display name:</strong> {{ mm_user.real_name}}</p>
<p><strong>Django email:</strong> {{ user.email }}</p>
<p><strong>Mailman primary email:</strong> {{ mm_user.email }}</p>
<p><strong>Mailman display name:</strong> {{ mm_user.real_name}}</p>
<p><strong>Valid addresses with this account:</strong> </p>
<h2>Valid email addresses for this account:</h2>
<ul>
{% for address in mm_user.addresses %}
<li>{{ address }}</li>
{% endfor %}
</ul>
<h2>List memberships:</h2>
<ul>
<li>list1@example.com [<a href="#">listinfo</a>]
[<a href="#">settings</a>]</li>
<li>kumquat@example.com [<a href="#">listinfo</a>]
[<a href="#">settings</a>]</li>
<li>starfruit@example.com [<a href="#">listinfo</a>]
[<a href="#">settings</a>]</li>
</ul>
</ul>
<!--
<script type="text/javascript"
src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#btnHide').click(function() {
//if (('#description').is(":visible")) {
$('td:nth-child(2),th:nth-child(2)').hide('slow');
//}
//else {
// $('td:nth-child(2),th:nth-child(2)').show('slow');
//}
});
});
</script> -->
<h2>Prefs form</h2>
{{ settingsform.asp }}
 
<h2>List Preferences Overview</h2>
<input id="btnHide" type="button" value="{% trans "Hide Descriptions" %}"/>
<form action="#">
<table class="mm_settings">
<table class="table table-bordered table-striped">
<tr>
<th>{% trans "Setting" %}</th>
<th>{% trans "Description" %}</th>
<th>{% trans "Set all" %}</th>
<th>kumquat@example.com</th>
<th>starfruit@example.com</th>
</tr>
<tr>
<th>{% trans "Mail delivery" %}</th>
<th>{% trans "Mail delivery" %} ({{ preference }})</th>
<td>Set this option to <em>Enabled</em> to receive
messages posted
to this mailing list. Set it to <em>Disabled</em> if you want
to stay subscribed, but don't want mail delivered to you for a
<td><input type="checkbox" /></td>
<td><input type="checkbox" /></td>
<td><input type="checkbox" /></td>
</tr>
{% for preference in mm_user.preferences %}
{% endfor %}
<tr>
<th colspan="6">{% trans "Per-Email subscriptions" %}</th>
</tr>
<tr>
View
8
src/mailmanweb/views.py
,context_instance=RequestContext(request))
 
@login_required
def user_mailmansettings(request):
try:
the_user = MailmanUser.objects.get(address=request.user.email)
except MailmanApiError:
return utils.render_api_error(request)
 
settingsform = MembershipSettings()
return render_to_response('mailmanweb/user_mailmansettings.html',
{'mm_user': the_user,
'settingsform': settingsform},
context_instance=RequestContext(request))
@login_required
def user_settings(request, tab = "membership",
template = 'mailmanweb/user_settings.html',