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

10 lines
222 B
Python

from django.conf.urls import url
from currencies.views import currencies, CurrencyUpdate
urlpatterns = [
url(r'^currencies/$', currencies),
url(r'^/$', CurrencyUpdate.as_view(),
name='CurrencyUpdate'),
]