Add basic support for tags on entries :3 cool beans
This commit is contained in:
parent
e72a6b01f0
commit
1a6ec02664
6 changed files with 99 additions and 2 deletions
|
|
@ -15,7 +15,10 @@ app_name = 'entries'
|
|||
urlpatterns = [
|
||||
url('^atom$', feeds.AtomHomeEntries(), name='atom'),
|
||||
url('^rss$', feeds.RssHomeEntries(), name='rss'),
|
||||
url('^tags/(?P<slug>.+)$', views.tagged, name='tagged'),
|
||||
]
|
||||
crumbs.add(prefix('tagged'), parent='home:index')
|
||||
|
||||
for k in kinds.all:
|
||||
kind = k.plural
|
||||
id = r'/(?P<id>\d+)'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue