first commit

This commit is contained in:
kicap1992
2022-03-15 05:13:36 +08:00
commit 638f0a9aee
104 changed files with 2733 additions and 0 deletions

7
base/urls.py Normal file
View File

@ -0,0 +1,7 @@
from django.urls import path
from . import views
urlpatterns = [
path('', views.home, name='home'),
path('bacaan/<str:pk>', views.bacaan, name='bacaan'),
]