| 12345678910111213141516171819202122232425262728 |
- """Defines url patterns for learning_logs."""
- from django.conf.urls import url
- from django.urls import path
- from . import views
- app_name = 'learning_logs'
- urlpatterns = [
- # Home page.
- path('', views.index, name='index'),
-
- # Show all topics.
- path('topics/', views.topics, name='topics'),
-
- # Detail page for a single topic.
- path('topics/<int:topic_id>/', views.topic, name='topic'),
-
- # Page for adding a new topic.
- path('new_topic/', views.new_topic, name='new_topic'),
-
- # Page for adding a new entry.
- path('new_entry/<int:topic_id>/', views.new_entry, name='new_entry'),
-
- # Page for editing an entry.
- path('edit_entry/<int:entry_id>/', views.edit_entry, name='edit_entry'),
- ]
|