From: Patrick Canterino Date: Sun, 6 Feb 2022 13:33:03 +0000 (+0100) Subject: Automatically select the current user when creating a note X-Git-Url: https://git.p6c8.net/pcdenotes.git/commitdiff_plain/9b36ee27357aaa8d1715b0a86db8cdd3f866c469 Automatically select the current user when creating a note --- diff --git a/notes/admin.py b/notes/admin.py index 2dd4171..7272afb 100644 --- a/notes/admin.py +++ b/notes/admin.py @@ -9,4 +9,9 @@ class NoteAdmin(admin.ModelAdmin): search_fields = ('title', 'content',) prepopulated_fields = {'slug': ('title',)} + def get_form(self, request, obj=None, **kwargs): + form = super(NoteAdmin, self).get_form(request, obj, **kwargs) + form.base_fields['author'].initial = request.user + return form + admin.site.register(Note, NoteAdmin) \ No newline at end of file