My first project

2023-12-15 Thread Daniel Martinez
Hello everyone, I'm Daniel, a recent college graduate as of July 2023. Since then, I've been actively seeking job opportunities as a Django developer. During my job search, I took the initiative to start my first project in Django. I'm excited to share with you my debut as a full-stack developer:

Re: logging admin accesses

2023-12-15 Thread Mike Dewhirst
Just thinking about it again ... you could look at the Admin source to see how it is working now and perhaps find a way to include the missing info in a pre-save signal.Also, I found django-simple-history online but I suppose you have seen that already.M--(Unsigned mail from my phone)

Re: logging admin accesses

2023-12-15 Thread Mike Dewhirst
You seem to be asking for a full history 'system'. I think the Admin history exists to show a bit of history with a link to go back to the change form where it happened.Full history needs to be specified fairly carefully so it doesn't bog the system down. For example, every write costs a

help

2023-12-15 Thread Abdoulaye SENE
hello forks! i need your help. in my codes i see "extend_schema_view" is not defined. so i see that it is not defined but i do not know in which package it is. @extend_schema_view( list=extend_schema( parameters=[ OpenApiParameter( 'assigned_only',

[no subject]

2023-12-15 Thread ASHISH SONAVANE
send me update all applications Store -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on

Re: logging admin accesses

2023-12-15 Thread Larry Martell
On Thu, Dec 14, 2023 at 5:49 PM Mike Dewhirst wrote: > Top posting because of phone email client. > > Have you seen the Admin history? Might be already logged for you. > Thanks, this is useful, but it does not seem to be logging everything. We have a custom user admin page that updates a few

Re: logging admin accesses

2023-12-15 Thread Vitaly Bogomolov
Is that programically accessible? I want to record it in the database. from django.contrib.admin.models import LogEntry logs = LogEntry.objects.all() #or you can filter, etc. -- You received this message because you are subscribed to the Google Groups "Django users" group. To