fmartingr
/
shelfzilla
Archived
1
0
Fork 0
This repository has been archived on 2021-06-29. You can view files and clone it, but cannot push or open issues or pull requests.
shelfzilla/shelfzilla/apps/manga/urls/volumes.py

17 lines
473 B
Python

from django.conf.urls import patterns, url
from ..views.volumes import WishlistVolumeView, HaveVolumeView, ReadVolumeView
urlpatterns = patterns(
'',
url(r'^(?P<vid>\d+)/wishlist_it/$',
WishlistVolumeView.as_view(),
name='volume.wishlist'),
url(r'^(?P<vid>\d+)/have_it/$',
HaveVolumeView.as_view(),
name='volume.have_it'),
url(r'^(?P<vid>\d+)/read_it/$',
ReadVolumeView.as_view(),
name='volume.read_it'),
)