Files
k-boris-website/dailystone/urls.py
Boris 44e2420c29
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Add random mineral button to daily-stone page
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-30 22:03:43 +03:00

11 lines
209 B
Python

from django.urls import path
from . import views
app_name = 'dailystone'
urlpatterns = [
path('', views.daily_stone, name='daily_stone'),
path('random/', views.random_stone, name='random_stone'),
]