]> git.openstreetmap.org Git - osqa.git/blob - forum_modules/updater/urls.py
creating some views for the update checker and creating the functions that get the...
[osqa.git] / forum_modules / updater / urls.py
1 from django.conf.urls.defaults import *
2 from django.views.generic.simple import direct_to_template
3 from django.utils.translation import ugettext as _
4
5 from views import updater_index, updater_check
6
7 urlpatterns = patterns('',
8     url(r'^%s%s%s$' % (_('admin/'), _('updater/'), _('check/')),  updater_check, name='updater_check'),
9 )