Added a view to the about menu to read the LICENSE file included with Mayan

This commit is contained in:
Roberto Rosario
2011-08-14 23:31:12 -04:00
parent 094a4125dc
commit aba9d47ad8
4 changed files with 47 additions and 15 deletions

View File

@@ -3,9 +3,9 @@ from django.views.generic.simple import direct_to_template
from django.conf import settings
urlpatterns = patterns('common.views',
url(r'^about/$', direct_to_template, {'template': 'about.html'}, 'about'),
url(r'^changelog/$', 'changelog', (), 'changelog'),
#url(r'^password/change/done/$', 'django.contrib.auth.views.password_change_done', {'template_name': 'password_change_done.html'}),
url(r'^about/$', direct_to_template, {'template': 'about.html'}, 'about_view'),
url(r'^changelog/$', 'changelog_view', (), 'changelog_view'),
url(r'^license/$', 'license_view', (), 'license_view'),
url(r'^password/change/done/$', 'password_change_done', (), name='password_change_done'),
url(r'^object/multiple/action/$', 'multi_object_action_view', (), name='multi_object_action_view'),