Archived
- Backend: Chapter, ReadingProgress, ReadingSettings models - Backend: Chapter API (TOC + content), progress tracking, settings CRUD - Frontend: ReadingPage with chapter navigation - Frontend: TableOfContents drawer - Frontend: ReadingSettingsPanel (theme, font, size, orientation) - Frontend: Custom hooks for settings, chapters, progress tracking - CSS: Mobile-first reading view with sepia/dark/light/paper themes - Route: /reader/:bookId reading view from book detail page - Docs: 001-customizable-mobile-reading-experience.md
7 lines
171 B
Python
7 lines
171 B
Python
from django.urls import path
|
|
|
|
from apps.reader.views import reading_settings_view
|
|
|
|
urlpatterns = [
|
|
path("settings/", reading_settings_view, name="reading-settings"),
|
|
] |