db.sqlite3 filled with isotopes

This commit is contained in:
2025-03-20 22:05:44 +01:00
parent b849274618
commit 0d55853f03
24 changed files with 381 additions and 0 deletions

View File

@ -0,0 +1,8 @@
from django.urls import path
from . import views
urlpatterns = [
path('', views.home, name='home'),
path('result/', views.result, name='result'),
]