dr.botzo/facts/urls.py

13 lines
478 B
Python
Raw Normal View History

"""URL patterns for the facts web views."""
2021-04-25 18:48:34 -05:00
from django.urls import path
2021-04-25 18:48:34 -05:00
from facts.views import factcategory_detail, index, rpc_get_facts, rpc_get_random_fact
urlpatterns = [
2021-04-25 18:48:34 -05:00
path('rpc/<category>/', rpc_get_facts, name='weather_rpc_get_facts'),
path('rpc/<category>/random/', rpc_get_random_fact, name='weather_rpc_get_random_fact'),
path('', index, name='facts_index'),
path('<factcategory_name>/', factcategory_detail, name='facts_factcategory_detail'),
]