On 5/1/07, Trilok <[EMAIL PROTECTED]> wrote: > > I am creating a new second admin page with features different from the > existing one and it would save me a lot of time if I could use > components from the django Admin interface. I don't want to modify the > existing admin interface. Is there a way to access components like the > calendar?
The admin view isn't magic. From a technical perspective, it's a fairly ordinary piece of generic view code, with some very pretty CSS and Javascript backing it up. It is able to do what it does by leveraging the capabilities of Django. Any or all of the parts that make up the admin view can be used elsewhere, either by customizing Admin templates, or emulating the technique used in the admin view on your own site. The calendar is just some fancy css with a javascript trigger, and yes, it can be accessed outside the admin view. Just include the admin media in your media directory, and include the relevant Javascript, CSS, and class tags on your page. 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 -~----------~----~----~----~------~----~------~--~---