no more oldhome, cbvs uniform across views

This commit is contained in:
apkallum 2020-08-26 21:44:06 -04:00 committed by Cristian
parent 94a590b31a
commit 1cdaad00a8
4 changed files with 49 additions and 351 deletions

View file

@ -5,7 +5,7 @@ from django.views import static
from django.conf import settings
from django.views.generic.base import RedirectView
from core.views import MainIndex, OldIndex, LinkDetails, PublicArchiveView, add_view
from core.views import MainIndex, LinkDetails, PublicArchiveView, AddView
# print('DEBUG', settings.DEBUG)
@ -18,7 +18,7 @@ urlpatterns = [
path('archive/', RedirectView.as_view(url='/')),
path('archive/<path:path>', LinkDetails.as_view(), name='LinkAssets'),
path('add/', add_view),
path('add/', AddView.as_view()),
path('accounts/login/', RedirectView.as_view(url='/admin/login/')),
path('accounts/logout/', RedirectView.as_view(url='/admin/logout/')),
@ -27,7 +27,6 @@ urlpatterns = [
path('accounts/', include('django.contrib.auth.urls')),
path('admin/', admin.site.urls),
path('old.html', OldIndex.as_view(), name='OldHome'),
path('index.html', RedirectView.as_view(url='/')),
path('index.json', static.serve, {'document_root': settings.OUTPUT_DIR, 'path': 'index.json'}),
path('', MainIndex.as_view(), name='Home'),