Hi enrico,
for most of the things you want to do, it would be better to write
your own app, using generic_views, it shouldn't require much coding
and it would give you the desired functionality without horribly
abusing the admin app. ;)

On 2/23/07, morellik <[EMAIL PROTECTED]> wrote:
>
> Dear all,
>
> I'm a newbie to Django. I'm starting to try it to manage the users in
> my lab.
> I have some 'models': Room (room number and its internal phone
> number), Status (prof, technician, student, etc), People (name,
> surname, country, etc.), Special (sysadm, bioadm, etc.).
>
> Is it possible:
> In the admin page where I add a new People:
> 1) set some checkbox (unbounds to the model)
> 2) based on the checkbox selected, send an email to someone based on
> new entry status, when I click on one of the Save buttons

not really, you could override the models' save() method, but for that
the checkbox field (BooleanField) would have to be defined on the
model....

>
> In the admin page:
> 1) generate a list of email address of the People and permit its
> download, or create a form to send an email to all People

what is 'permit its download' ?

to create a form, just add another model, override its save() to send emails

>
> Thanks at all
> Enrico
>
>
> >
>


-- 
Honza Kr�l
E-Mail: [EMAIL PROTECTED]
ICQ#:   107471613
Phone:  +420 606 678585

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to