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

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