urls.py
python_backend/curriculum/django/blog/urls.py
from django.urls import path
from . import views
urlpatterns = [
path('', views.post_list, name='post_list'),
]
Artículos relacionados
apps.py
apps.py — python source code from the python backend learning materials (python_backend/curriculum/django/blog/apps.py).
Leer artículo →0001_initial.py
0001_initial.py — python source code from the python backend learning materials (python_backend/curriculum/django/blog/migrations/0001_initial.py).
Leer artículo →models.py
models.py — python source code from the python backend learning materials (python_backend/curriculum/django/blog/models.py).
Leer artículo →views.py
views.py — python source code from the python backend learning materials (python_backend/curriculum/django/blog/views.py).
Leer artículo →manage.py
manage.py — python source code from the python backend learning materials (python_backend/curriculum/django/manage.py).
Leer artículo →asgi.py
asgi.py — python source code from the python backend learning materials (python_backend/curriculum/django/myproject/asgi.py).
Leer artículo →