html2print
clone your own copy | download snapshot

Snapshots | iceberg

No images in this repository’s iceberg at this time

Inside this repository

urls.py
text/x-python

Download raw (258 bytes)

from django.conf.urls import url
from . import views


app_name = 'publish'


urlpatterns = [
    url(r'^sandbox/', views.SandboxView.as_view(), name='sandbox'),
    url(r'^article/(?P<pk>\d+)/$', views.ArticleDetailView.as_view(), name='article-detail'),
]