2026-03-19 15:48:59 -04:00
|
|
|
from django.urls import path
|
|
|
|
|
|
|
|
|
|
from apps.billboard import views
|
|
|
|
|
|
|
|
|
|
app_name = "billboard"
|
|
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
|
path("", views.billboard, name="billboard"),
|
2026-03-24 16:46:46 -04:00
|
|
|
path("toggle-applets", views.toggle_billboard_applets, name="toggle_applets"),
|
rename: Note→Post/Line (dashboard); Recognition→Note (drama); new-post/my-posts to billboard
- dashboard: Note→Post, Item→Line across models, forms, views, API, urls & tests
- new-post (9×3) & my-posts (3×3) applets migrate from dashboard→billboard context; billboard view passes form & recent_posts
- drama: Recognition→Note, related_name notes; billboard URL /recognition/→/my-notes/, set-palette at /note/<slug>/set-palette
- recognition.js→note.js (module Note, data.note key); recognition-page.js→note-page.js; .recog-*→.note-*
- _recognition.scss→_note.scss; BillNotes page header; applet slug billboard-recognition→billboard-notes (My Notes)
- NoteSpec.js replaces RecognitionSpec.js; test_recognition.py→test_applet_my_notes.py
- 4 migrations applied: dashboard 0004, applets 0011+0012, drama 0005; 683 ITs green
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-22 22:32:34 -04:00
|
|
|
path("my-notes/", views.my_notes, name="my_notes"),
|
|
|
|
|
path("note/<slug:slug>/set-palette", views.note_set_palette, name="note_set_palette"),
|
2026-03-19 15:48:59 -04:00
|
|
|
path("room/<uuid:room_id>/scroll/", views.room_scroll, name="scroll"),
|
2026-03-24 17:44:34 -04:00
|
|
|
path("room/<uuid:room_id>/scroll-position/", views.save_scroll_position, name="save_scroll_position"),
|
2026-03-19 15:48:59 -04:00
|
|
|
]
|