Add basics of eboutic, still need to implement the ET API to get bank payment

This commit is contained in:
Skia
2016-07-22 01:19:50 +02:00
parent 525d7e6709
commit f04cf9d4d4
13 changed files with 436 additions and 0 deletions

14
eboutic/urls.py Normal file
View File

@ -0,0 +1,14 @@
from django.conf.urls import url, include
from eboutic.views import *
urlpatterns = [
# Subscription views
url(r'^$', EbouticMain.as_view(), name='main'),
url(r'^command$', EbouticCommand.as_view(), name='command'),
url(r'^pay$', EbouticPayWithSith.as_view(), name='pay_with_sith'),
url(r'^et_autoanswer$', EtransactionAutoAnswer.as_view(), name='etransation_autoanswer'),
]