Skip to content

Commit

Permalink
reformat urls
Browse files Browse the repository at this point in the history
Signed-off-by: Jason <[email protected]>
  • Loading branch information
JasonLovesDoggo committed Sep 1, 2024
1 parent 6769408 commit eef2edb
Showing 1 changed file with 34 additions and 10 deletions.
44 changes: 34 additions & 10 deletions core/urls.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,40 @@
from django.contrib.flatpages.sitemaps import FlatPageSitemap
from django.conf import settings
from django.contrib.sitemaps.views import sitemap
from django.urls import include, path

from .api.views import *
from .utils.sitemaps import *
from .views.index import *
from .views.organization import *
from .views.post import *
from .views.raffle import *
from .views.timetable import *
from .views.tv import *
from .views.user import *
from .utils.sitemaps import AnnouncementsSitemap, BlogSitemap, ClubsSitemap
from .views.index import (
AboutView,
CalendarFeed,
CalendarView,
Index,
Json,
Justinian,
MapView,
Teapot,
)
from .views.organization import OrganizationDetail, OrganizationList, OrganizationShort
from .views.post import (
AnnouncementCards,
AnnouncementDetail,
AnnouncementFeed,
AnnouncementList,
AnnouncementTagList,
BlogPostCards,
BlogPostDetail,
BlogPostList,
BlogPostTagList,
ExhibitList,
)
from .views.raffle import RaffleRedirect
from .views.timetable import (
CourseCreate,
TimetableCreate,
TimetableList,
TimetableUpdate,
)
from .views.tv import TVClubView, TVView
from .views.user import Profile, ProfileRedirect, ProfileUpdate

urlpatterns = [
path("", Index.as_view(), name="index"),
Expand Down

0 comments on commit eef2edb

Please sign in to comment.