start oef
This commit is contained in:
+33
@@ -0,0 +1,33 @@
|
||||
|
||||
from django.contrib import admin
|
||||
from django.urls import path, include
|
||||
from django.conf import settings
|
||||
from django.conf.urls.static import static
|
||||
from django.views.generic import TemplateView
|
||||
|
||||
|
||||
from . import views
|
||||
|
||||
app_name = "oef"
|
||||
|
||||
urlpatterns = [
|
||||
path(
|
||||
"entries", views.EntryTableView.as_view(), name="entry_table_view"
|
||||
),
|
||||
path(
|
||||
"formats", views.formats_view, name="formats_view"
|
||||
),
|
||||
path(
|
||||
"formats/create", views.FormatsCreateView.as_view(), name="format_create"
|
||||
),
|
||||
path(
|
||||
"entries/<int:pk>/update", views.EntryUpdateView.as_view(), name="entry_update"
|
||||
),
|
||||
path(
|
||||
"formats/<int:pk>/update", views.FormatsUpdateView.as_view(), name="format_update"
|
||||
),
|
||||
path(
|
||||
"formats/<int:pk>/apply", views.formats_apply, name="formats_apply"
|
||||
),
|
||||
|
||||
]
|
||||
Reference in New Issue
Block a user