1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/project/media/urls.py
2015-10-19 13:04:49 +01:00

8 lines
226 B
Python

from django.conf.urls import url
from .views import GalleryView, YoutubeView
urlpatterns = [
url(r'^gallery', GalleryView.as_view(), name='gallery'),
url(r'^youtube', YoutubeView.as_view(), name='youtube')
]