Changeset 34339bb


Ignore:
Timestamp:
Jun 8, 2013, 3:24:04 AM (13 years ago)
Author:
Alex Dehnert <adehnert@…>
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)
Message:

Merge branch 'stage'

  • stage: Add forgotten midway list template
Location:
asadb
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • asadb/groups/urls.py

    r532a8e9 ra7c08e4  
    11from django.conf.urls.defaults import *
     2
     3import django.shortcuts
    24
    35import groups.views
    46import space.views
    57
     8def redirect_view(to):
     9    def _redirect_view(request, **kwargs):
     10        return django.shortcuts.redirect(to, **kwargs)
     11    return _redirect_view
     12
    613group_patterns = patterns('',
    714    url(r'^$', groups.views.GroupDetailView.as_view(), name='group-detail', ),
    815    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'), ),
    1018    url(r'^history/$', groups.views.GroupHistoryView.as_view(), name='group-manage-history', ),
    1119    url(r'^space/$', space.views.manage_access, name='group-space-access', ),
  • asadb/media/style/style.css

    r1e08e97 r53e624e  
    272272}
    273273
    274 table.group-change-officers-change td
     274table.group-update-people-change td
    275275{
    276276    text-align: center;
  • asadb/template/groups/group_change_officers.html

    rbb1a40e r53e624e  
    11{% extends "base.html" %}
    22
    3 {% block title %}{{group.name}}: Change people{% endblock %}
     3{% block title %}{{group.name}}: Update people{% endblock %}
    44{% block content %}
    55
    6 <h1>{{group.name}}: Change people</h1>
     6<h1>{{group.name}}: Update people</h1>
    77
    88{% include "groups/group_tools.part.html" %}
    99
    10 <p>Please adjust your signatories below.</p>
     10<p>Please adjust the people associated with your group below.</p>
    1111
    1212<h2>Available roles</h2>
     
    5252{% endif %}
    5353
    54 <h2>Option 1: View and update signatories one at a time</h2>
     54<h2>Option 1: View and update people one at a time</h2>
    5555
    5656<p>Please note:</p>
     
    6464<input type='hidden' name='opt-mode' value='table' />
    6565{% csrf_token %}
    66 <table class='pretty-table group-change-officers-change'>
     66<table class='pretty-table group-update-people-change'>
    6767<thead>
    6868<tr>
Note: See TracChangeset for help on using the changeset viewer.