Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 561 Bytes

README.md

File metadata and controls

34 lines (21 loc) · 561 Bytes

django-totalsum-admin

A django app that initializes admin changelist view with last row in results as sum of some numerical fields or properties

Installation

Use the following command: pip install django-totalsum-admin

Configuration

  • settings.py
INSTALLED_APPS = {
    ...,
    'totalsum',
    ...
}

Usage

from totalsum.admin import TotalsumAdmin


class MyAdmin(TotalsumAdmin):
    totalsum_list = ('model_field1', 'model_field2', 'model_property')
    unit_of_measure = '€'