Adds retry page

This commit is contained in:
Mouse Reeve
2021-11-12 14:36:28 -08:00
parent 2a84c0a370
commit a65f07e0bf
5 changed files with 76 additions and 4 deletions

View File

@ -238,6 +238,7 @@ urlpatterns = [
# imports
re_path(r"^import/?$", views.Import.as_view(), name="import"),
re_path(r"^import/(\d+)/?$", views.ImportStatus.as_view(), name="import-status"),
re_path(r"^import/(\d+)/failed/?$", views.ImportTroubleshoot.as_view(), name="import-troubleshoot"),
# users
re_path(rf"{USER_PATH}\.json$", views.User.as_view()),
re_path(rf"{USER_PATH}/?$", views.User.as_view(), name="user-feed"),