mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-15 10:43:22 +00:00
30 lines
975 B
Python
30 lines
975 B
Python
from django.shortcuts import render
|
|
from django.views.generic.edit import UpdateView, CreateView
|
|
from django.views.generic.base import View
|
|
from django.core.exceptions import PermissionDenied
|
|
from django import forms
|
|
from django.forms import Select
|
|
from django.conf import settings
|
|
|
|
from subscription.models import Subscriber, Subscription
|
|
from core.views import CanEditMixin, CanEditPropMixin, CanViewMixin
|
|
from core.models import User
|
|
|
|
def get_subscriber(user):
|
|
s = Subscriber.objects.filter(pk=user.pk).first()
|
|
return s
|
|
|
|
class SubscriptionForm(forms.ModelForm):
|
|
class Meta:
|
|
model = Subscription
|
|
fields = ['member', 'subscription_type', 'payment_method']
|
|
|
|
class NewSubscription(CanEditMixin, CreateView):
|
|
template_name = 'subscription/subscription.jinja'
|
|
form_class = SubscriptionForm
|
|
|
|
def get_initial(self):
|
|
if 'member' in self.request.GET.keys():
|
|
return {'member': self.request.GET['member']}
|
|
return {}
|