Created Lineup model, view, and template

This commit is contained in:
2021-11-10 15:34:26 -06:00
parent b5509bf26f
commit 6e3901ab05
9 changed files with 63 additions and 0 deletions

9
lineups/urls.py Normal file
View File

@@ -0,0 +1,9 @@
from django.contrib import admin
from django.urls import path, include
from . import views
urlpatterns = [
path('edit/<int:id>', views.edit, name="edit lineup"),
]