permission

This commit is contained in:
Parsa Nazer
2025-11-14 16:31:24 +03:30
parent 3818f55276
commit 030976044c
7 changed files with 143 additions and 71 deletions
+38 -21
View File
@@ -1,6 +1,7 @@
from rest_framework_simplejwt.token_blacklist.models import BlacklistedToken, OutstandingToken
from django.contrib import admin
from .models import *
from unfold.admin import TabularInline
from unfold.admin import TabularInline
from django.contrib.auth.admin import UserAdmin as BaseUserAdmin
from import_export.admin import ImportExportModelAdmin
from unfold.contrib.import_export.forms import ExportForm, ImportForm, SelectableFieldsExportForm
@@ -22,27 +23,35 @@ class UserAddressInLine(TabularInline):
tab = True
verbose_name = 'ادرس کاربر'
verbose_name_plural = 'ادرس های کاربر'
@admin.register(User)
class UserAdmin(BaseUserAdmin, ModelAdmin, ImportExportModelAdmin):
form = UserChangeForm
add_form = UserCreationForm
change_password_form = AdminPasswordChangeForm
filter_horizontal = []
filter_horizontal = ('groups', 'user_permissions',)
ordering = []
inlines = [UserAddressInLine]
list_filter = ['is_superuser']
search_fields = ['phone', 'first_name', 'last_name', 'email']
list_display = ['full_name_display', 'phone', 'email', 'is_superuser', 'gender', 'birth_date']
list_display = ['full_name_display', 'phone',
'email', 'is_superuser', 'gender', 'birth_date']
# readonly_fields = ['phone', 'email', 'otp_expiry', 'otp_hash', 'date_joined', 'profile_photo']
exclude = ('otp_hash', 'otp_expiry', 'is_active', 'is_staff', 'password', 'last_login',)
exclude = ('otp_hash', 'otp_expiry', 'is_active',
'password', 'last_login',)
import_form_class = ImportForm
export_form_class = ExportForm
fieldsets = (
('اطلاعات شخصی', {'fields': ('first_name', 'last_name', 'profile_photo', 'password', 'gender', 'birth_date'),}),
('اطلاعات ارتباطی', {'fields': ('phone', 'email'),}),
('دسترسی های وبسایت', {'fields': ('is_superuser', 'video_uploader'),}),
('اطلاعات شخصی', {'fields': ('first_name', 'last_name',
'profile_photo', 'gender', 'birth_date'), }),
('اطلاعات ارتباطی', {'fields': ('phone', 'email'), }),
('دسترسی های وبسایت', {
'fields': ('is_superuser', 'is_staff', 'video_uploader'), }),
('گروه ها و مجوزها', {'fields': ('groups', 'user_permissions',)}),
)
empty_value_display = 'ثبت نشده'
add_fieldsets = (
@@ -50,8 +59,15 @@ class UserAdmin(BaseUserAdmin, ModelAdmin, ImportExportModelAdmin):
'classes': ('wide',),
'fields': ('phone', 'password1', 'password2'),
}),
('دسترسی ها', {
'fields': ('groups', 'user_permissions', 'is_superuser', 'is_staff', 'video_uploader'),
}),
)
def display_groups(self, obj):
"""Display user's groups in the list view"""
return ", ".join([group.name for group in obj.groups.all()]) or "هیچ گروهی"
display_groups.short_description = 'گروه ها'
compressed_fields = True
warn_unsaved_form = True
@@ -61,15 +77,14 @@ class UserAdmin(BaseUserAdmin, ModelAdmin, ImportExportModelAdmin):
"widget": ArrayWidget,
}
}
def full_name_display(self, obj):
return obj.full_name
full_name_display.short_description = 'نام و نام خانوادگی'
admin.site.unregister(Group)
from django.contrib import admin
from rest_framework_simplejwt.token_blacklist.models import BlacklistedToken, OutstandingToken
# admin.site.unregister(Group)
admin.site.unregister(BlacklistedToken)
admin.site.unregister(OutstandingToken)
@@ -79,8 +94,9 @@ class AddressAdmin(ModelAdmin, ImportExportModelAdmin):
import_form_class = ImportForm
export_form_class = ExportForm
search_fields = ['address', 'name', 'city', 'province']
list_display = ['user', 'name', 'address_display', 'postal_code', 'city', 'province', 'for_me', 'is_main']
#readonly_fields = ['user', 'name', 'address', 'postal_code', 'phone', 'city', 'province', 'for_me']
list_display = ['user', 'name', 'address_display',
'postal_code', 'city', 'province', 'for_me', 'is_main']
# readonly_fields = ['user', 'name', 'address', 'postal_code', 'phone', 'city', 'province', 'for_me']
compressed_fields = True
warn_unsaved_form = True
formfield_overrides = {
@@ -91,6 +107,7 @@ class AddressAdmin(ModelAdmin, ImportExportModelAdmin):
"widget": ArrayWidget,
}
}
def address_display(self, obj):
return obj.address[0:35] + '...'
address_display.short_description = 'ادرس'
@@ -104,7 +121,6 @@ class PushSubscription(ModelAdmin, ImportExportModelAdmin):
warn_unsaved_form = True
@admin.register(SecurityBreachAttemptModel)
class SecurityBreachAttemptAdmin(ModelAdmin, ImportExportModelAdmin):
import_form_class = ImportForm
@@ -112,15 +128,17 @@ class SecurityBreachAttemptAdmin(ModelAdmin, ImportExportModelAdmin):
compressed_fields = True
warn_unsaved_form = True
change_form_template = 'loction_chagne_form.html'
list_display = ['ip_address', 'country', 'region_name', 'city', 'zip_code', 'isp', 'created_at', 'trys', 'display_viewd']
list_display = ['ip_address', 'country', 'region_name', 'city',
'zip_code', 'isp', 'created_at', 'trys', 'display_viewd']
def change_view(self, request, object_id, form_url='', extra_context=None):
extra_context = extra_context or {}
obj = self.get_object(request, object_id)
if obj and obj.lat and obj.lon:
m = Map(location=[obj.lat, obj.lon], zoom_start=10)
Marker([obj.lat, obj.lon], popup=f"Location: {obj.ip_address}").add_to(m)
Marker([obj.lat, obj.lon],
popup=f"Location: {obj.ip_address}").add_to(m)
map_html = m._repr_html_()
extra_context['map_html'] = map_html
return super().change_view(request, object_id, form_url, extra_context)
@@ -135,7 +153,7 @@ class SecurityBreachAttemptAdmin(ModelAdmin, ImportExportModelAdmin):
return format_html(
svg
)
@admin.register(NewsModel)
class NewsAdmin(ModelAdmin):
@@ -145,4 +163,3 @@ class NewsAdmin(ModelAdmin):
@admin.register(UserNotificationModel)
class UserNotificationAdmin(ModelAdmin):
pass