2019-08-10 17:01:15 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
# Copyright (C) 2018-2019 by BDE ENS Paris-Saclay
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
from django.contrib.auth.mixins import LoginRequiredMixin
|
|
|
|
from django.utils.translation import gettext_lazy as _
|
2019-08-11 21:25:27 +00:00
|
|
|
from django.views.generic import CreateView, ListView, DetailView
|
2019-08-11 15:39:05 +00:00
|
|
|
from django.http import HttpResponseRedirect
|
2019-08-11 14:22:52 +00:00
|
|
|
from django.contrib.auth.forms import UserCreationForm
|
|
|
|
from django.urls import reverse_lazy
|
2019-08-11 21:25:27 +00:00
|
|
|
|
|
|
|
from .models import Profile, Club
|
|
|
|
from .forms import ProfileForm, ClubForm
|
2019-08-11 14:22:52 +00:00
|
|
|
|
2019-08-11 22:30:29 +00:00
|
|
|
class UserCreateView(CreateView):
|
2019-08-11 14:22:52 +00:00
|
|
|
"""
|
|
|
|
Une vue pour inscrire un utilisateur et lui créer un profile
|
|
|
|
|
|
|
|
"""
|
|
|
|
form_class = ProfileForm
|
|
|
|
success_url = reverse_lazy('login')
|
|
|
|
template_name ='member/signup.html'
|
|
|
|
second_form = UserCreationForm
|
|
|
|
|
|
|
|
def get_context_data(self,**kwargs):
|
|
|
|
context = super(SignUp,self).get_context_data(**kwargs)
|
|
|
|
context["user_form"] = self.second_form
|
|
|
|
|
|
|
|
return context
|
2019-08-11 15:39:05 +00:00
|
|
|
|
|
|
|
def form_valid(self, form):
|
|
|
|
user_form = UserCreationForm(self.request.POST)
|
|
|
|
if user_form.is_valid():
|
|
|
|
user = user_form.save()
|
|
|
|
user_profile = form.save(commit=False) # do not save to db
|
|
|
|
user_profile.user = user
|
|
|
|
user_profile.save()
|
|
|
|
return super().form_valid(form)
|
2019-08-11 21:25:27 +00:00
|
|
|
|
|
|
|
|
2019-08-11 22:30:29 +00:00
|
|
|
|
|
|
|
class UserDetailView(LoginRequiredMixin,DetailView):
|
|
|
|
model = Profile
|
|
|
|
|
|
|
|
|
2019-08-11 21:25:27 +00:00
|
|
|
class ClubCreateView(LoginRequiredMixin,CreateView):
|
|
|
|
"""
|
|
|
|
Create Club
|
|
|
|
"""
|
|
|
|
model = Club
|
|
|
|
form_class = ClubForm
|
|
|
|
|
|
|
|
def form_valid(self,form):
|
|
|
|
return super().form_valid(form)
|
|
|
|
|
|
|
|
class ClubListView(LoginRequiredMixin,ListView):
|
|
|
|
"""
|
|
|
|
List TransactionsTemplates
|
|
|
|
"""
|
|
|
|
model = Club
|
|
|
|
form_class = ClubForm
|
2019-08-11 22:30:29 +00:00
|
|
|
|
2019-08-11 21:25:27 +00:00
|
|
|
class ClubDetailView(LoginRequiredMixin,DetailView):
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
model = Club
|