Skip to main content

Django abstract model that adds admin fields (created_on/by, last_edited_on/by) to an existing model

Project description

Django Model Admin Fields

Django is one of the most popular Python web frameworks today. Importantly, it provides an ORM permitting us to define models as Python classes that Django maps to a database representations for us.

A very common, nearly ubiquitous desire/need I have is to keep some record against all database objects as to who created them, when and who last edited them and when. Very basic tracking fields. Given the ubiquity of the need it was best implemented as an abstract model that my models derive from.

The basic Django example of model:

from django.db import models

class Person(models.Model):
    first_name = models.CharField(max_length=30)
    last_name = models.CharField(max_length=30)

can be extended thusly:

from django.db import models
from django_model_admin_fields import AdminModel

class Person(AdminModel):
    first_name = models.CharField(max_length=30)
    last_name = models.CharField(max_length=30)

which has the simple effect of adding the following fields to the model silently:

    created_by = models.ForeignKey(User, verbose_name='Created By', 
                                   related_name='%(class)ss_created', 
                                   editable=False, null=True, on_delete=models.SET_NULL)
    created_on = models.DateTimeField('Time of Creation', editable=False, null=True)
    created_on_tz = TimeZoneField('Time of Creation, Timezone', 
                                  default=settings.TIME_ZONE, editable=False)

    last_edited_by = models.ForeignKey(User, verbose_name='Last Edited By', 
                                       related_name='%(class)ss_last_edited', 
                                       editable=False, null=True, on_delete=models.SET_NULL)
    last_edited_on = models.DateTimeField('Time of Last Edit', editable=False, null=True)
    last_edited_on_tz = TimeZoneField('Time of Last Edit, Timezone', 
                                      default=settings.TIME_ZONE, editable=False)

(a more precise description of course is in __init__.py)

Importantly it also overrides the model's save() method to set those six fields before calling super().save() (i.e. the default save method) and thus these fields are automatically managed.

The currently active Django timezone is saved as well to support sensible human interpretation of the saved times (as Django's DateTimeField) is not timezone aware.

To make use of that easier, two properties are also added to the model: created_on_local and last_edited_on_local which are timezone aware versions of the naive created_one and last_edited_on fields.

To illustrate use of the Person example above:

person = Person()
person.first_name = "John"
person.last_name = "Smith"
person.save

print(f"{person.first_name} {person.last_name}")
print(f"was created by {person.created_by} on {person.created_on_local}.")

Of course to make use of local times, you need to activate the timezone that the creating user is in. To do that you need to know it first. The JavaScript library jstz is useful in that regard for detecting the users timezone and there's a great guide on setting timezones in Django in the Django documentation proper.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_model_admin_fields-0.3.1.tar.gz (9.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_model_admin_fields-0.3.1-py3-none-any.whl (10.1 kB view details)

Uploaded Python 3

File details

Details for the file django_model_admin_fields-0.3.1.tar.gz.

File metadata

File hashes

Hashes for django_model_admin_fields-0.3.1.tar.gz
Algorithm Hash digest
SHA256 a4d39ba4f9c6e58a0f097aafaddf1d08f03b2c3fa115a8d708b3f023dfbdecd6
MD5 3cc7e3214022cc2ef5e497392b836d50
BLAKE2b-256 1f0f9b8a46a9735b38f975579607729c189e0e8850afca40eea23af7739515bc

See more details on using hashes here.

File details

Details for the file django_model_admin_fields-0.3.1-py3-none-any.whl.

File metadata

File hashes

Hashes for django_model_admin_fields-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3a5d1d5ee130e60adf47306f55040485c53a63f92b94ebb94d54a8fe0dc9c7c9
MD5 e85fe420620221bf01e67abbb4880b1f
BLAKE2b-256 c3813a6fa554f6190aa9101a5ab2f27fc16228aa35a4dd9f4774bd8581f9b9a7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page