9 lines
176 B
Python
9 lines
176 B
Python
from django.conf.urls import url
|
|
|
|
from .views import ArticleFormView
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^model_form/(?P<pk>\d+)/$', ArticleFormView.as_view(), name="article_form"),
|
|
]
|