X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/cc266e75da29c970544e815dab67b95521ea23b3..3ba9e8fa774dcb586990f71986d8618631f3e5b1:/forum/urls.py diff --git a/forum/urls.py b/forum/urls.py index 5485379..0168b8e 100644 --- a/forum/urls.py +++ b/forum/urls.py @@ -46,8 +46,9 @@ core_urls = ( url(r'^%s(?P\d+)/$' % _('revisions/'), app.readers.revisions, name='revisions'), url(r'^%s$' % _('questions/'), app.readers.questions, name='questions'), url(r'^%s%s$' % (_('questions/'), _('ask/')), app.writers.ask, name='ask'), + url(r'^canned_comments/(?P\d+)/$', app.commands.canned_comments, name='canned_comments'), url(r'^%s%s$' % (_('questions/'), _('related_questions/')), app.commands.related_questions, name='related_questions'), - + url(r'^%s%s$' % (_('questions/'), _('unanswered/')), app.readers.unanswered, name='unanswered'), url(r'^%s(?P[\w\-]+)/(?P\d+)/(?P.*)/$' % _('questions/'), app.readers.user_questions, name='user_questions'),