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

11 lines
243 B
Python
Raw Normal View History

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