Changeset 5e2645b


Ignore:
Timestamp:
Jan 22, 2012, 2:52:04 PM (14 years ago)
Author:
Alex Dehnert <adehnert@…>
Branches:
master, space-access, stable, stage
Children:
b926df6
Parents:
fb1c047
git-author:
Alex Dehnert <adehnert@…> (01/22/12 14:12:48)
git-committer:
Alex Dehnert <adehnert@…> (01/22/12 14:52:04)
Message:

Add text about use of data (Trac: #37)

Location:
asadb
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • asadb/urls.py

    r0b72bfd r5e2645b  
    1212import forms.views
    1313
     14about_patterns = patterns('',
     15    url(
     16        r'^data/$',
     17        'django.views.generic.simple.direct_to_template',
     18        {'template': 'about/data.html', 'extra_context': { 'pagename':'about' }, },
     19        name='data',
     20    ),
     21)
     22
    1423urlpatterns = patterns('',
    1524    # Example:
    1625    # (r'^asadb/', include('asadb.foo.urls')),
    1726    url(r'^$', 'groups.views.view_homepage', name='homepage', ),
     27    (r'^about/', include(about_patterns, ), ),
    1828
    1929    # FYSM
Note: See TracChangeset for help on using the changeset viewer.