Changeset 2c86ed1 for asadb/urls.py


Ignore:
Timestamp:
Apr 8, 2012, 11:47:35 PM (14 years ago)
Author:
Alex Dehnert <adehnert@…>
Branches:
master, space-access, stable, stage
Children:
c3cd6c2
Parents:
a03cb61
git-author:
Alex Dehnert <adehnert@…> (04/08/12 23:47:35)
git-committer:
Alex Dehnert <adehnert@…> (04/08/12 23:47:35)
Message:

Make CSV of space access available to CAC online

Fixes ASA Trac #91.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • asadb/urls.py

    r78c94e7 r2c86ed1  
    1111import groups.urls
    1212import forms.views
     13import space.views
    1314
    1415about_patterns = patterns('',
     
    5960    (r'^groups/', include(groups.urls.urls(), ), ),
    6061
     62    # Space
     63    url(r'^space/dump/locker-access.csv$', space.views.dump_locker_access, name='space-dump-locker-access', ),
     64    url(r'^space/dump/office-access.csv$', space.views.dump_office_access, name='space-dump-office-access', ),
     65
    6166    # Uncomment the admin/doc line below and add 'django.contrib.admindocs'
    6267    # to INSTALLED_APPS to enable admin documentation:
Note: See TracChangeset for help on using the changeset viewer.