mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-11-04 09:12:11 +01:00 
			
		
		
		
	Fix CI
This commit is contained in:
		@@ -6,22 +6,18 @@ import io
 | 
				
			|||||||
from PIL import Image
 | 
					from PIL import Image
 | 
				
			||||||
from dal import autocomplete
 | 
					from dal import autocomplete
 | 
				
			||||||
from django.conf import settings
 | 
					from django.conf import settings
 | 
				
			||||||
from django.contrib import messages
 | 
					 | 
				
			||||||
from django.contrib.auth.mixins import LoginRequiredMixin
 | 
					from django.contrib.auth.mixins import LoginRequiredMixin
 | 
				
			||||||
from django.contrib.auth.models import User
 | 
					from django.contrib.auth.models import User
 | 
				
			||||||
from django.contrib.auth.views import LoginView
 | 
					from django.contrib.auth.views import LoginView
 | 
				
			||||||
from django.core.exceptions import ValidationError
 | 
					 | 
				
			||||||
from django.db.models import Q
 | 
					from django.db.models import Q
 | 
				
			||||||
from django.http import HttpResponseRedirect
 | 
					 | 
				
			||||||
from django.shortcuts import redirect
 | 
					from django.shortcuts import redirect
 | 
				
			||||||
from django.urls import reverse_lazy
 | 
					from django.urls import reverse_lazy
 | 
				
			||||||
from django.utils.translation import gettext_lazy as _
 | 
					from django.utils.translation import gettext_lazy as _
 | 
				
			||||||
from django.views.generic import CreateView, DetailView, UpdateView, TemplateView, DeleteView
 | 
					from django.views.generic import CreateView, DetailView, UpdateView, TemplateView
 | 
				
			||||||
from django.views.generic.edit import FormMixin
 | 
					from django.views.generic.edit import FormMixin
 | 
				
			||||||
from django_tables2.views import SingleTableView
 | 
					from django_tables2.views import SingleTableView
 | 
				
			||||||
from rest_framework.authtoken.models import Token
 | 
					from rest_framework.authtoken.models import Token
 | 
				
			||||||
from note.forms import ImageForm
 | 
					from note.forms import ImageForm
 | 
				
			||||||
#from note.forms import AliasForm, ImageForm
 | 
					 | 
				
			||||||
from note.models import Alias, NoteUser
 | 
					from note.models import Alias, NoteUser
 | 
				
			||||||
from note.models.transactions import Transaction
 | 
					from note.models.transactions import Transaction
 | 
				
			||||||
from note.tables import HistoryTable, AliasTable
 | 
					from note.tables import HistoryTable, AliasTable
 | 
				
			||||||
@@ -326,6 +322,7 @@ class ClubDetailView(LoginRequiredMixin, DetailView):
 | 
				
			|||||||
        context['member_list'] = club_member
 | 
					        context['member_list'] = club_member
 | 
				
			||||||
        return context
 | 
					        return context
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class ClubAliasView(LoginRequiredMixin, DetailView):
 | 
					class ClubAliasView(LoginRequiredMixin, DetailView):
 | 
				
			||||||
    model = Club
 | 
					    model = Club
 | 
				
			||||||
    template_name = 'member/club_alias.html'
 | 
					    template_name = 'member/club_alias.html'
 | 
				
			||||||
@@ -364,6 +361,7 @@ class ClubAddMemberView(LoginRequiredMixin, CreateView):
 | 
				
			|||||||
        return super().get_queryset().filter(PermissionBackend.filter_queryset(self.request.user, Membership, "view")
 | 
					        return super().get_queryset().filter(PermissionBackend.filter_queryset(self.request.user, Membership, "view")
 | 
				
			||||||
                                             | PermissionBackend.filter_queryset(self.request.user, Membership,
 | 
					                                             | PermissionBackend.filter_queryset(self.request.user, Membership,
 | 
				
			||||||
                                                                                 "change"))
 | 
					                                                                                 "change"))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def get_context_data(self, **kwargs):
 | 
					    def get_context_data(self, **kwargs):
 | 
				
			||||||
        club = Club.objects.get(pk=self.kwargs["pk"])
 | 
					        club = Club.objects.get(pk=self.kwargs["pk"])
 | 
				
			||||||
        context = super().get_context_data(**kwargs)
 | 
					        context = super().get_context_data(**kwargs)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -8,7 +8,6 @@ from rest_framework.filters import OrderingFilter, SearchFilter
 | 
				
			|||||||
from rest_framework import viewsets
 | 
					from rest_framework import viewsets
 | 
				
			||||||
from rest_framework.response import Response
 | 
					from rest_framework.response import Response
 | 
				
			||||||
from rest_framework import status
 | 
					from rest_framework import status
 | 
				
			||||||
 | 
					 | 
				
			||||||
from api.viewsets import ReadProtectedModelViewSet, ReadOnlyProtectedModelViewSet
 | 
					from api.viewsets import ReadProtectedModelViewSet, ReadOnlyProtectedModelViewSet
 | 
				
			||||||
 | 
					
 | 
				
			||||||
from .serializers import NotePolymorphicSerializer, AliasSerializer, TemplateCategorySerializer, \
 | 
					from .serializers import NotePolymorphicSerializer, AliasSerializer, TemplateCategorySerializer, \
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -5,7 +5,6 @@ from dal import autocomplete
 | 
				
			|||||||
from django import forms
 | 
					from django import forms
 | 
				
			||||||
from django.utils.translation import gettext_lazy as _
 | 
					from django.utils.translation import gettext_lazy as _
 | 
				
			||||||
 | 
					
 | 
				
			||||||
from .models import Alias
 | 
					 | 
				
			||||||
from .models import TransactionTemplate
 | 
					from .models import TransactionTemplate
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,7 +2,6 @@
 | 
				
			|||||||
# SPDX-License-Identifier: GPL-3.0-or-later
 | 
					# SPDX-License-Identifier: GPL-3.0-or-later
 | 
				
			||||||
 | 
					
 | 
				
			||||||
from django.db import models
 | 
					from django.db import models
 | 
				
			||||||
from django.db.models import F
 | 
					 | 
				
			||||||
from django.urls import reverse
 | 
					from django.urls import reverse
 | 
				
			||||||
from django.utils import timezone
 | 
					from django.utils import timezone
 | 
				
			||||||
from django.utils.translation import gettext_lazy as _
 | 
					from django.utils.translation import gettext_lazy as _
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -106,8 +106,7 @@ DELETE_TEMPLATE = """
 | 
				
			|||||||
class AliasTable(tables.Table):
 | 
					class AliasTable(tables.Table):
 | 
				
			||||||
    class Meta:
 | 
					    class Meta:
 | 
				
			||||||
        attrs = {
 | 
					        attrs = {
 | 
				
			||||||
            'class':
 | 
					            'class': 'table table condensed table-striped table-hover',
 | 
				
			||||||
                'table table condensed table-striped table-hover',
 | 
					 | 
				
			||||||
            'id': "alias_table"
 | 
					            'id': "alias_table"
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        model = Alias
 | 
					        model = Alias
 | 
				
			||||||
@@ -122,7 +121,6 @@ class AliasTable(tables.Table):
 | 
				
			|||||||
                                       attrs={'td': {'class': 'col-sm-1'}})
 | 
					                                       attrs={'td': {'class': 'col-sm-1'}})
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 | 
				
			||||||
class ButtonTable(tables.Table):
 | 
					class ButtonTable(tables.Table):
 | 
				
			||||||
    class Meta:
 | 
					    class Meta:
 | 
				
			||||||
        attrs = {
 | 
					        attrs = {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user