urls.py
python_backend/curriculum/django/myproject/urls.py
from django.contrib import admin
from django.urls import path, include
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('blog.urls')),
]
相關文章
apps.py
apps.py — python source code from the python backend learning materials (python_backend/curriculum/django/blog/apps.py).
閱讀文章 →0001_initial.py
0001_initial.py — python source code from the python backend learning materials (python_backend/curriculum/django/blog/migrations/0001_initial.py).
閱讀文章 →models.py
models.py — python source code from the python backend learning materials (python_backend/curriculum/django/blog/models.py).
閱讀文章 →urls.py
urls.py — python source code from the python backend learning materials (python_backend/curriculum/django/blog/urls.py).
閱讀文章 →views.py
views.py — python source code from the python backend learning materials (python_backend/curriculum/django/blog/views.py).
閱讀文章 →manage.py
manage.py — python source code from the python backend learning materials (python_backend/curriculum/django/manage.py).
閱讀文章 →