WIP urls, view, template, JS connecting tge template submission to view, rough-in the export method

This commit is contained in:
Rachid Mrad 2023-12-19 11:55:34 -05:00
parent 69d5dd4d5c
commit c2536d6300
No known key found for this signature in database
GPG key ID: EF38E4CEC4A8F3CF
13 changed files with 302 additions and 9 deletions

View file

@ -9,6 +9,10 @@ from django.urls import include, path
from django.views.generic import RedirectView
from registrar import views
# from registrar.views.admin_views import export_data
from registrar.views.admin_views import ExportData
from registrar.views.application import Step
from registrar.views.utility import always_404
from api.views import available, get_current_federal, get_current_full
@ -50,6 +54,8 @@ urlpatterns = [
RedirectView.as_view(pattern_name="logout", permanent=False),
),
path("admin/", admin.site.urls),
# path('export_data/', export_data, name='admin_export_data'),
path('export_data/', ExportData.as_view(), name='admin_export_data'),
path(
"application/<id>/edit/",
views.ApplicationWizard.as_view(),