mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-23 04:33:11 +00:00
11 lines
296 B
Python
11 lines
296 B
Python
from django.contrib import admin
|
|
from django.urls import path
|
|
|
|
|
|
from core.views import MainIndex, LinkDetails
|
|
|
|
urlpatterns = [
|
|
path('admin/', admin.site.urls),
|
|
path('archive/<timestamp>/', LinkDetails.as_view(), name='LinkDetails'),
|
|
path('main/', MainIndex.as_view(), name='Home'),
|
|
]
|