All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
New dailystone app with 207 minerals scraped from Wikipedia. Each day displays a different mineral with photos, formula, properties, description, and history. Page theme color matches the mineral's typical appearance. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
147 B
Python
10 lines
147 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
app_name = 'dailystone'
|
|
|
|
urlpatterns = [
|
|
path('', views.daily_stone, name='daily_stone'),
|
|
]
|