Re: Customizing Django Admin Site

2012-05-19 Thread Aditya Sriram M
Umm.. yes to some extent... Can I make an html frame inside a cell, and then open another admin site inside it!? On Monday, 7 May 2012 20:01:15 UTC+5:30, francescortiz wrote: > > You can create pseudo fields in the admin > > class CarAdmin(admin.ModelAdmin) > list_display = ('name','custom_f

Re: Customizing Django Admin Site

2012-05-07 Thread francescortiz
You can create pseudo fields in the admin class CarAdmin(admin.ModelAdmin) list_display = ('name','custom_field') def custom_field(srlf, obj): return mark_safe('http://www.google.com";>Link') custom_field.short_description = 'Link to Google' custom_field.allow_tags = True

Customizing Django Admin Site

2012-05-07 Thread Aditya Sriram M
Hi All, I could successfully try the Django framework on my Oracle DB. I never thought programming would be this easy!!! Thanks for the wonderful framework. Now, I want to have an Admin Site with 'another such admin site in its row'. Is it possible? Example: Take the models Customers, Users an