7👍
You can send a flag from the urlconf to the view by using the optional third parameter:
url(r'^alumni/(?P<blog_author>[^/]+)/$', 'entries', {'alumni': True}, name='blog'),
Source:stackexchange.com
7👍
You can send a flag from the urlconf to the view by using the optional third parameter:
url(r'^alumni/(?P<blog_author>[^/]+)/$', 'entries', {'alumni': True}, name='blog'),