mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 01:16:27 +00:00
91 lines
4.4 KiB
Python
91 lines
4.4 KiB
Python
# Re2o est un logiciel d'administration développé initiallement au rezometz. Il
|
|
# se veut agnostique au réseau considéré, de manière à être installable en
|
|
# quelques clics.
|
|
#
|
|
# Copyright © 2017 Gabriel Détraz
|
|
# Copyright © 2017 Goulven Kermarec
|
|
# Copyright © 2017 Augustin Lemesle
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along
|
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
# App de gestion des machines pour re2o
|
|
# Gabriel Détraz, Augustin Lemesle
|
|
# Gplv2
|
|
|
|
|
|
from django.shortcuts import render
|
|
from django.shortcuts import get_object_or_404, render, redirect
|
|
from django.template.context_processors import csrf
|
|
from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger
|
|
from django.template import Context, RequestContext, loader
|
|
from django.contrib import messages
|
|
from django.contrib.auth.decorators import login_required, permission_required
|
|
from django.db.models import Max, ProtectedError
|
|
from django.db import IntegrityError
|
|
from django.core.mail import send_mail
|
|
from django.utils import timezone
|
|
from django.core.urlresolvers import reverse
|
|
from django.db import transaction
|
|
|
|
from reversion.models import Version
|
|
from reversion import revisions as reversion
|
|
|
|
from .forms import EditUserOptionsForm, EditMachineOptionsForm, EditGeneralOptionsForm
|
|
from .models import OptionalUser, OptionalMachine, GeneralOption
|
|
|
|
def form(ctx, template, request):
|
|
c = ctx
|
|
c.update(csrf(request))
|
|
return render(request, template, c)
|
|
|
|
|
|
@login_required
|
|
@permission_required('cableur')
|
|
def display_options(request):
|
|
useroptions, created = OptionalUser.objects.get_or_create()
|
|
machineoptions, created = OptionalMachine.objects.get_or_create()
|
|
generaloptions, created = GeneralOption.objects.get_or_create()
|
|
return form({'useroptions': useroptions, 'machineoptions': machineoptions, 'generaloptions': generaloptions}, 'preferences/display_preferences.html', request)
|
|
|
|
@login_required
|
|
@permission_required('admin')
|
|
def edit_options(request):
|
|
""" Edition des préférences générales"""
|
|
useroptions_instance, created = OptionalUser.objects.get_or_create()
|
|
machineoptions_instance, created = OptionalMachine.objects.get_or_create()
|
|
generaloptions_instance, created = GeneralOption.objects.get_or_create()
|
|
useroptions = EditUserOptionsForm(request.POST or None, instance=useroptions_instance)
|
|
machineoptions = EditMachineOptionsForm(request.POST or None, instance=machineoptions_instance)
|
|
generaloptions = EditGeneralOptionsForm(request.POST or None, instance=generaloptions_instance)
|
|
if useroptions.is_valid() or machineoptions.is_valid() or generaloptions.is_valid():
|
|
if useroptions.is_valid():
|
|
with transaction.atomic(), reversion.create_revision():
|
|
useroptions.save()
|
|
reversion.set_user(request.user)
|
|
reversion.set_comment("Champs modifié(s) : %s" % ', '.join(field for field in useroptions.changed_data))
|
|
if machineoptions.is_valid():
|
|
with transaction.atomic(), reversion.create_revision():
|
|
machineoptions.save()
|
|
reversion.set_user(request.user)
|
|
reversion.set_comment("Champs modifié(s) : %s" % ', '.join(field for field in machineoptions.changed_data))
|
|
if generaloptions.is_valid():
|
|
with transaction.atomic(), reversion.create_revision():
|
|
generaloptions.save()
|
|
reversion.set_user(request.user)
|
|
reversion.set_comment("Champs modifié(s) : %s" % ', '.join(field for field in generaloptions.changed_data))
|
|
messages.success(request, "Préférences modifiées")
|
|
return redirect("/preferences/")
|
|
return form({'useroptions': useroptions, 'machineoptions': machineoptions, 'generaloptions': generaloptions}, 'preferences/edit_preferences.html', request)
|
|
|