web_AI-5/django/didgeridoo/currencies/urls.py

10 lines
242 B
Python
Raw Normal View History

2017-12-18 19:19:08 +01:00
from django.conf.urls import url
2018-01-14 22:11:34 +01:00
from currencies.views import currencies, currency_update
2018-01-14 22:54:46 +01:00
2017-12-18 19:19:08 +01:00
urlpatterns = [
2017-12-19 21:28:05 +01:00
url(r'^currencies/$', currencies),
2018-01-14 22:11:34 +01:00
url(r'^ajax/currency_update/$',
currency_update,
name='currency_update'),
2017-12-18 19:19:08 +01:00
]