Re: Django admin - how to change breadcrumbs 'Home' into 'Main menu'

2021-08-26 Thread Cale Roco
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

Re: UML to Django models

2021-08-26 Thread Cale Roco
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