# -*- coding:utf-8 -* # # Copyright 2023 © AE UTBM # ae@utbm.fr / ae.info@utbm.fr # # This file is part of the website of the UTBM Student Association (AE UTBM), # https://ae.utbm.fr. # # You can find the source code of the website at https://github.com/ae-utbm/sith3 # # LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3) # SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE # OR WITHIN THE LOCAL FILE "LICENSE" # # from django.urls import path from sas.views import * urlpatterns = [ path("", SASMainView.as_view(), name="main"), path("moderation/", ModerationView.as_view(), name="moderation"), path("album//", AlbumView.as_view(), name="album"), path( "album//upload/", AlbumUploadView.as_view(), name="album_upload", ), path("album//edit/", AlbumEditView.as_view(), name="album_edit"), path("album//preview/", send_album, name="album_preview"), path("picture//", PictureView.as_view(), name="picture"), path( "picture//edit/", PictureEditView.as_view(), name="picture_edit", ), path("picture//download/", send_pict, name="download"), path( "picture//download/compressed/", send_compressed, name="download_compressed", ), path( "picture//download/thumb/", send_thumb, name="download_thumb", ), ]