1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/project/blog/urls.py

7 lines
145 B
Python
Raw Normal View History

2016-02-20 19:27:18 +00:00
from django.conf.urls import url
from . import views
urlpatterns = [
2016-02-20 21:37:03 +00:00
url(r'^(?P<slug>.+)/$', views.BlogView.as_view(), name='blog-post'),
2016-02-20 19:27:18 +00:00
]