Mapa serwisu¶
Mapa pokazuje wszystkie publiczne adresy aplikacji oraz wymagany poziom dostępu.
Drzewo URL¶
graph TD
root["/<br/><i>strona główna / dashboard</i>"]
health["/health/"]
admin["/admin/<br/><i>panel Django</i>"]
subgraph Auth["/auth/"]
login["/auth/login/"]
logout["/auth/logout/"]
register["/auth/register/"]
activate["/auth/activate/<uid>/<token>/"]
activation_sent["/auth/activation-sent/"]
resend["/auth/resend-activation/"]
profile["/auth/profile/"]
display_name["/auth/display-name/"]
genres["/auth/genres/"]
pwreset["/auth/password-reset/"]
pwreset_done["/auth/password-reset/done/"]
pwreset_confirm["/auth/reset/<uid>/<token>/"]
pwreset_complete["/auth/reset/done/"]
end
subgraph Movies["/movies/"]
list["/movies/<br/><i>lista + wyszukiwarka</i>"]
detail["/movies/<tmdb_id>/"]
status_act["/movies/<id>/status/<br/><i>POST</i>"]
rating_act["/movies/<id>/rating/<br/><i>POST</i>"]
comment_create["/movies/<id>/comments/<br/><i>POST</i>"]
comment_del["/movies/<id>/comments/<cid>/delete/<br/><i>POST</i>"]
end
root --> Movies
root --> Auth
detail --> status_act
detail --> rating_act
detail --> comment_create
detail --> comment_del
style admin fill:#fde7e9,stroke:#c4314b
style status_act fill:#fff5d6,stroke:#b08800
style rating_act fill:#fff5d6,stroke:#b08800
style comment_create fill:#fff5d6,stroke:#b08800
style comment_del fill:#fff5d6,stroke:#b08800
Mapowanie do plików¶
| Sekcja | Plik URL conf |
|---|---|
/ |
core/urls.py |
/auth/... |
accounts/urls.py |
/movies/... |
movies/urls.py |
/admin/, /health/, root include |
config/urls.py |