Mercurial > public > sg101
annotate core/urls.py @ 1037:7e0c3cbd3cda
Fix bad select_related call.
In Django 1.8, select_related now throws an error if you give it an invalid
field. This was happening. Fix that query.
Also noticed an extra query generated in the display_post template. Fixed.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 29 Dec 2015 22:21:42 -0600 |
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 ] |