Mercurial > public > sg101
annotate core/urls.py @ 1178:a584caef1576
Remove Catch a Wave Radio link.
Google gives a big scary warning if you try to follow this link.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 13 Apr 2019 14:38:40 -0500 |
parents | 5ba2508939f7 |
children |
rev | line source |
---|---|
bgneal@142 | 1 """ |
bgneal@142 | 2 Urls for the core application. |
bgneal@142 | 3 """ |
bgneal@1028 | 4 from django.conf.urls import url |
bgneal@142 | 5 |
bgneal@1028 | 6 import core.views |
bgneal@1028 | 7 |
bgneal@1028 | 8 |
bgneal@1028 | 9 urlpatterns = [ |
bgneal@1028 | 10 url(r'^markdown_help/$', core.views.markdown_help, name='core-markdown_help'), |
bgneal@1028 | 11 url(r'^ajax/users/$', core.views.ajax_users, name='core-ajax_users'), |
bgneal@1028 | 12 ] |