Exemplo n.º 1
0
     name='donate'),
 url(r'^donate/process/$', process_donation, name='donate-process'),
 url(r'^donate/new/$', DonateView.as_view(), name='donate-new'),
 url(r'^donate/new/' + UUID + '/$',
     DonateRewardView.as_view(),
     name='donate-reward'),
 url(r'^donate/edit/(?P<pk>[0-9]+)/$',
     EditLinkView.as_view(),
     name='donate-edit'),
 url(r'^donate/invoice/' + UUID + '/$',
     download_invoice,
     name='donate-invoice'),
 url(r'^donate/disable/(?P<pk>[0-9]+)/$',
     disable_repeat,
     name='donate-disable'),
 url(r'^news/$', NewsView.as_view(), name='news'),
 url(r'^news/archive/(?P<slug>[-a-zA-Z0-9_]+)/$',
     PostView.as_view(),
     name='post'),
 url(r'^support/$',
     TemplateView.as_view(template_name="support.html"),
     name='support'),
 url(r'^thanks/$',
     TemplateView.as_view(template_name="thanks.html"),
     name='thanks'),
 url(r'^terms/$',
     TemplateView.as_view(template_name="terms.html"),
     name='terms'),
 url(r'^payment/' + UUID + '/$', PaymentView.as_view(), name='payment'),
 url(r'^payment/' + UUID + '/edit/$',
     CustomerView.as_view(),
Exemplo n.º 2
0
 url(r"^subscription/token/(?P<pk>[0-9]+)/$",
     service_token,
     name="service-token"),
 url(r"^subscription/users/(?P<pk>[0-9]+)/$",
     service_user,
     name="service-user"),
 url(r"^subscription/pay/(?P<pk>[0-9]+)/$",
     subscription_pay,
     name="subscription-pay"),
 url(
     r"^subscription/view/(?P<pk>[0-9]+)/$",
     subscription_view,
     name="subscription-view",
 ),
 url(r"^subscription/new/$", subscription_new, name="subscription-new"),
 url(r"^news/$", NewsView.as_view(), name="news"),
 url(r"^news/archive/$", NewsArchiveView.as_view(), name="news-archive"),
 url(
     r"^news/topic/milestone/$",
     MilestoneArchiveView.as_view(),
     name="milestone-archive",
 ),
 url(
     r"^news/topic/(?P<slug>[-a-zA-Z0-9_]+)/$",
     TopicArchiveView.as_view(),
     name="topic-archive",
 ),
 url(r"^news/archive/(?P<slug>[-a-zA-Z0-9_]+)/$",
     PostView.as_view(),
     name="post"),
 url(r"^about/$",
Exemplo n.º 3
0
     EditLinkView.as_view(),
     name='donate-edit'
 ),
 url(
     r'^donate/invoice/' + UUID + '/$',
     download_invoice,
     name='donate-invoice'
 ),
 url(
     r'^donate/disable/(?P<pk>[0-9]+)/$',
     disable_repeat,
     name='donate-disable'
 ),
 url(
     r'^news/$',
     NewsView.as_view(),
     name='news'
 ),
 url(
     r'^news/archive/(?P<slug>[-a-zA-Z0-9_]+)/$',
     PostView.as_view(),
     name='post'
 ),
 url(
     r'^support/$',
     TemplateView.as_view(template_name="support.html"),
     name='support'
 ),
 url(
     r'^thanks/$',
     TemplateView.as_view(template_name="thanks.html"),