gealogiuya
Some checks failed
Deploy Django Application to Server / deploy (push) Failing after 19s
Telegram Notifications / Telegram Gate (push) Failing after 5s

This commit is contained in:
2026-02-27 14:56:23 +05:00
commit 0229a0595c
118 changed files with 33948 additions and 0 deletions

12
apps/geology/urls.py Normal file
View File

@@ -0,0 +1,12 @@
from typing import List
from django.urls import path
from django.urls.resolvers import URLPattern
from apps.geology.views import GeologyView, CategoryView, GalleryCategoryView
urlpatterns: List[URLPattern] = [
path("geology/", GeologyView.as_view(), name="geology"),
path("category/", CategoryView.as_view(), name="category"),
path("gallery/", GalleryCategoryView.as_view(), name="gallery"),
]