Mercurial > public > sg101
annotate core/urls.py @ 1166:130ac1e98cf4
More V3 forums tweaking.
Adding attachments is working now.
Adding a post via ajax is working.
Still need to display attachments on posts.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 20 Aug 2017 15:55:54 -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 ] |