Skip to main content

this library adds 'created_at', 'updated_at' and 'delete_at' fields like a rail apps in django, also added soft delete method

Project description

this library adds ‘created_at’, ‘updated_at’ and ‘delete_at’ fields like a rail apps in django, also added soft delete method.

install

pip install django-loggable

How to start

1.- Add to django-loggable in the django apps:

INSTALLED_APPS = [
    'django.contrib.admin',
  'django.contrib.auth',
        ...
  'django-loggable'
  ...
]

2.- Extends LoggableModel in the model to use:

class MyModel(LoggeableModel):
    field = models.CharField(max_length=20)

3.- Add to django-admin:

class ContactAdmin(LoggeableAdmin):
    pass
  ...
admin.site.register(Contact, ContactAdmin)

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-loggable-0.3.tar.gz (1.7 kB view hashes)

Uploaded Source

Built Distribution

django_loggable-0.3-py3-none-any.whl (3.6 kB view hashes)

Uploaded Python 3

Supported by

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