Changeset 34339bb
- Timestamp:
- Jun 8, 2013, 3:24:04 AM (13 years ago)
- Branches:
- master, stable, stage
- Children:
- 8c0a2ff
- Parents:
- a7c08e4 (diff), d983e4f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - git-author:
- Alex Dehnert <adehnert@…> (06/08/13 03:24:02)
- git-committer:
- Alex Dehnert <adehnert@…> (06/08/13 03:24:04)
- Location:
- asadb
- Files:
-
- 1 added
- 3 edited
-
template/midway/midway_list.html (added)
-
groups/urls.py (modified) (1 diff)
-
media/style/style.css (modified) (1 diff)
-
template/groups/group_change_officers.html (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
asadb/groups/urls.py
r532a8e9 ra7c08e4 1 1 from django.conf.urls.defaults import * 2 3 import django.shortcuts 2 4 3 5 import groups.views 4 6 import space.views 5 7 8 def redirect_view(to): 9 def _redirect_view(request, **kwargs): 10 return django.shortcuts.redirect(to, **kwargs) 11 return _redirect_view 12 6 13 group_patterns = patterns('', 7 14 url(r'^$', groups.views.GroupDetailView.as_view(), name='group-detail', ), 8 15 url(r'^edit/main$', groups.views.manage_main, name='group-manage-main', ), 9 url(r'^edit/officers$', groups.views.manage_officers, name='group-manage-officers', ), 16 url(r'^edit/people$', groups.views.manage_officers, name='group-manage-officers', ), 17 url(r'^edit/officers$', redirect_view('groups:group-manage-officers'), ), 10 18 url(r'^history/$', groups.views.GroupHistoryView.as_view(), name='group-manage-history', ), 11 19 url(r'^space/$', space.views.manage_access, name='group-space-access', ), -
asadb/media/style/style.css
r1e08e97 r53e624e 272 272 } 273 273 274 table.group- change-officers-change td274 table.group-update-people-change td 275 275 { 276 276 text-align: center; -
asadb/template/groups/group_change_officers.html
rbb1a40e r53e624e 1 1 {% extends "base.html" %} 2 2 3 {% block title %}{{group.name}}: Change people{% endblock %}3 {% block title %}{{group.name}}: Update people{% endblock %} 4 4 {% block content %} 5 5 6 <h1>{{group.name}}: Change people</h1>6 <h1>{{group.name}}: Update people</h1> 7 7 8 8 {% include "groups/group_tools.part.html" %} 9 9 10 <p>Please adjust your signatoriesbelow.</p>10 <p>Please adjust the people associated with your group below.</p> 11 11 12 12 <h2>Available roles</h2> … … 52 52 {% endif %} 53 53 54 <h2>Option 1: View and update signatoriesone at a time</h2>54 <h2>Option 1: View and update people one at a time</h2> 55 55 56 56 <p>Please note:</p> … … 64 64 <input type='hidden' name='opt-mode' value='table' /> 65 65 {% csrf_token %} 66 <table class='pretty-table group- change-officers-change'>66 <table class='pretty-table group-update-people-change'> 67 67 <thead> 68 68 <tr>
Note: See TracChangeset
for help on using the changeset viewer.