Advertisement
romarioagros

Untitled

Jul 6th, 2020
1,007
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.30 KB | None | 0 0
  1. from  django.urls import path
  2. from . views import index, by_rubric
  3.  
  4. from . views import add , add_save
  5. urlpatterns = [
  6.     path("add/save/", add_save, name='add'),
  7.     path("add/", add, name='add'),
  8.     path('<int:rubric_id>/' , by_rubric , name ="by_rubric"),
  9.     path("" ,index , name = 'index'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement