urls.py 210 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 from django.conf.urls import url, include from myapp.views import * urlpatterns = [ url(r'^static/', StaticView.as_view(), name='static'), url(r'^dynamic/', DynamicView.as_view(), name='dynamic'), ]