mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Hide the password field (#103)
This commit is contained in:
parent
165b476635
commit
7113a18f3b
@ -1,9 +1,25 @@
|
||||
from django.contrib import admin
|
||||
from django import forms
|
||||
from paperless_mail.models import MailAccount, MailRule
|
||||
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
|
||||
|
||||
class MailAccountAdminForm(forms.ModelForm):
|
||||
|
||||
"""Metadata classes used by Django admin to display the form."""
|
||||
|
||||
class Meta:
|
||||
|
||||
"""Metadata class used by Django admin to display the form."""
|
||||
|
||||
model = MailAccount
|
||||
widgets = {
|
||||
'password': forms.PasswordInput(),
|
||||
}
|
||||
fields = '__all__'
|
||||
|
||||
|
||||
class MailAccountAdmin(admin.ModelAdmin):
|
||||
|
||||
list_display = ("name", "imap_server", "username")
|
||||
@ -19,6 +35,7 @@ class MailAccountAdmin(admin.ModelAdmin):
|
||||
'fields': ['character_set']
|
||||
})
|
||||
]
|
||||
form = MailAccountAdminForm
|
||||
|
||||
|
||||
class MailRuleAdmin(admin.ModelAdmin):
|
||||
|
Loading…
x
Reference in New Issue
Block a user