On 2/16/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> Is it possible to implement this within the django admin or should I
> create a specific application for this?

The right solution here is to write your own application. The admin
view is intended to be just that - an adminstration view. It isn't a
CMS, or any other breed of end-user application. It is a low level
view of your data structures, that trusted users can use to enter or
tweak data. It is not intended to be the publicly visible face of any
application.

That's not to say you can't leverage off the admin view. The Admin
view gets most of its magic from generic views; learn how to use
these, and you should be able to prototype your custom application
(with its own workflows, etc) relatively quickly.

Yours,
Russ Magee %-)

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
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