Implemented editing for model instances

This commit is contained in:
2021-11-09 20:31:19 -06:00
parent 82c42e66ae
commit fa9a51509a
11 changed files with 84 additions and 21 deletions

View File

@@ -5,5 +5,6 @@ from . import views
urlpatterns = [
path('', views.root, name="root"),
path('list', views.list, name="venues list"),
path('edit/<int:id>', views.edit, name="edit venue")
path('edit/<int:id>', views.edit, name="edit venue"),
path('edit', views.edit, name="edit venue")
]