haven't tried it but you could potentially just override the
"/admin/base.html" template in your templates directory
On Tuesday, 24 August 2021 at 02:02:14 UTC+1 Mike Dewhirst wrote:
> We are using 'Home' in a different, more public, part of the site and
> have to adjust that first item in the
theres a lot of different ways you can do this, depending on your desired
functionality, the amount of data you intend to store etc,
// Simple Example
class Product(models.Model):
name = models.Charfield(max_length=255)
class ProductFeature(models.Model):
product = models.ForeignKey(Prod
2 matches
Mail list logo