mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-21 19:03:11 +00:00
Unusefull stuff
This commit is contained in:
parent
dfe15ec23d
commit
bed24b5c1c
1 changed files with 0 additions and 24 deletions
|
@ -154,34 +154,10 @@ def disconnect_room(request, room, roomid):
|
|||
))
|
||||
|
||||
|
||||
def edit_preferences(request):
|
||||
""" View to edit the settings of the tickets """
|
||||
|
||||
preferences_instance, created = Preferences.objects.get_or_create(id=1)
|
||||
preferencesform = EditPreferencesForm(
|
||||
request.POST or None,
|
||||
instance = preferences_instance,)
|
||||
|
||||
if preferencesform.is_valid():
|
||||
if preferencesform.changed_data:
|
||||
preferencesform.save()
|
||||
messages.success(request,'Preferences updated')
|
||||
return redirect(reverse('preferences:display-options',))
|
||||
else:
|
||||
messages.error(request,'Formulaire Invalide')
|
||||
return form({'preferencesform':preferencesform,},'multi_op/form_preferences.html',request)
|
||||
return form({'preferencesform':preferencesform,},'multi_op/form_preferences.html',request)
|
||||
|
||||
|
||||
def navbar_user():
|
||||
"""View to display the app in user's dropdown in the navbar"""
|
||||
return ('topologie', render_to_string('multi_op/navbar.html'))
|
||||
|
||||
|
||||
def preferences(request):
|
||||
""" View to display the settings of the tickets in the preferences page"""
|
||||
pref, created = Preferences.objects.get_or_create(id=1)
|
||||
context = {'preferences':pref,'language':str(pref.LANGUES[pref.mail_language][1])}
|
||||
return render_to_string('tickets/preferences.html', context=context, request=request, using=None)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue