Created
January 28, 2018 12:07
-
-
Save ridoansaleh/cbcfa58be919ea22254a9852cc2657eb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.conf.urls import url | |
from . import views | |
urlpatterns = [ | |
url(r'^$', views.index, name="index"), | |
url(r'^edit/(?P<pk>\d+)$', views.edit, name='edit'), | |
url(r'^delete/(?P<pk>\d+)$', views.delete, name='delete'), | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment