Re: Admin Page Customization Questions

2014-07-15 Thread Michiel Overtoom
On Jul 15, 2014, at 17:59, G Z wrote: > > I have a few questions, is it possible to template the admin page? Yes, you can copy the default admin templates and change them. It is described here: https://docs.djangoproject.com/en/dev/intro/tutorial02/#customize-the-admin-look-and-feel Gree

Re: Admin Page Customization Questions

2014-07-15 Thread G Z
Ive also tried class License(models.Model): license_id = models.BigIntegerField(primary_key = True, editable = False, db_column = 'license_id') license_authority = models.ForeignKey(License_authoritie, on_delete = models.PROTECT) product = models.CharField(max_length = 20) class

Admin Page Customization Questions

2014-07-15 Thread G Z
I have a few questions, is it possible to template the admin page? second I'm trying to customize some of the individuals pages for my particular issue I have a table named vm_licenses and a licenses table, I have my models set up l