mirror of
https://github.com/kennethreitz/photos.kennethreitz.org.git
synced 2026-06-21 15:10:56 +00:00
54bd5bc122
- Remove groups app and multi-user features (user listing, registration, @username profiles, SINGLE_TENANT toggle) - Switch from JWT/localStorage auth to Django session auth - Replace Alpine.js with HTMX + vanilla JS where needed - Add SiteConfig model for customizable site title/tagline - Add photo manager page (/manage/) with multi-select and bulk actions - Add python-dotenv so manage.py loads .env automatically - Server-render dashboard, search, collections (no client-side framework) - Keep vanilla JS only for upload (drag-drop/progress) and manage (multi-select) - Simplify gallery URLs from /@username/collections/ to /collections/ - Clean up API: remove groups/users endpoints, add /images/manage Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
11 lines
259 B
Python
11 lines
259 B
Python
from django.urls import path
|
|
|
|
from gallery import views
|
|
|
|
app_name = 'gallery'
|
|
|
|
urlpatterns = [
|
|
path('collections/', views.collection_list, name='collection-list'),
|
|
path('collections/<slug:slug>/', views.collection_detail, name='collection-detail'),
|
|
]
|