Add table names to meta for clarity. #6

Closed
opened 2024-06-07 09:49:45 -04:00 by cgiacofei · 0 comments
Owner

Some poor choices were made in table names. Update the admin display with something like this:

class Batch(models.Model):

    class Meta:
        verbose_name = "Propagation"
        verbose_name_plural = "Propagations"

At least it will make more sense in the admin view this way.

Some poor choices were made in table names. Update the admin display with something like this: ``` python class Batch(models.Model): class Meta: verbose_name = "Propagation" verbose_name_plural = "Propagations" ``` At least it will make more sense in the admin view this way.
cgiacofei added the
enhancement
label 2024-06-07 09:49:45 -04:00
Sign in to join this conversation.
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: Brewery/brewery-website#6
No description provided.