Skip to main content

Library for creating HTML listing / table / data grid

Project description

https://raw.githubusercontent.com/elapouya/django-listing/master/docs/_static/readme_intro1.png https://raw.githubusercontent.com/elapouya/django-listing/master/docs/_static/readme_intro2.png

Django app for building HTML listings / tables, it includes many features :

  • Any iterable, Django QuerySet or model can be used.

  • Most listings can be configured into a template file without touching a python file

  • A class-based ListingView is provided if you want to code a listing at python side

  • It as an Ajax mode to save requests to the server

  • Uses JQuery if ajax is activated

  • Customized for Bootstrap by default, but can be easily customized in many way (templates, icons, etc…)

  • You can select columns to display, columns title, default sorting etc..

  • Pagination is highly customizable (buttons to display, goto page, ellipsis, icons et labels)

  • Rows can be <div> instead of <tr>, so it is possible to format data in many ways

  • A lot of column types are provided, they are automatically created when a QuerySet or a model is provided

  • Columns are class-bases and one can create custom ones

  • Columns manage One-to-many, Many-to-many and foreign relations

  • Provides aggregation columns : sum, avg, min, max values

  • Provides page-level and global aggregation : sum, avg, min, max values displayed at listing last row

  • Provides columns to make a link to the object, a custom link, checkbox, select box, text input…

  • Provides “action column” that comes with many actions : show, edit, delete, move up, move down…

  • is able to manage multiple variations to present data in multiple way at the same place (text only listing, text+image listing, image only listing for example)

  • Uses Django translation framework : one can translate the listing as needed

  • Toolbars can be added at the top and/or at the bottom to make actions

  • Built-in toolbar action are : sorting, select a listing variation, number of rows per page, export data. They are customizable.

  • Toolbar items are class-based : one can create a custom one easily

  • django-listing can automatically create a filter form (aka search form)

  • Listing rows can be selectable in order to apply some actions

  • Listings can be editable for mass updates

  • django-listing can automatically create a form for inserting data to database

  • One can upload files/images into a listing, it uses DropzoneJS (Work in progress)

  • ListingView can manage itself database inserting, editing, deleting, filtering, uploads and actions : no need to develop any code for that.

  • django-listing comes with hundreds of icons as a scalable font

  • django-listing is faster than django-table2

Showcase

A demo is included in source code, you will need poetry to install python environment:

curl -sSL https://install.python-poetry.org | python3 -

Get the source code:

git clone https://github.com/elapouya/django-listing.git

To install the python envionment:

cd django_listing/showcase
poetry install --no-root

Check you are in showcase/ directory, then start the Django from poetry environment:

poetry run python manage.py runserver 8123

A sqlite database is already included, you do not have to make any migration, just open your brower at http://localhost:8123

License

Django-listing is licensed under the GPLv3 license for all open source applications. A commercial license is required for all commercial applications or non-open applications

See LICENSE.rst file for more informations.

Documentation

Please, read the doc (Work in progress)

News

0.7.24 (2024-04-18)

  • Fix up & down icons in SortSelectToolbarItem to be displayed on Firefox

  • Add some documentions

0.7.23 (2024-04-18)

  • Add icons on buttons for filter form and attached form

0.7.21 (2024-04-16)

  • Update showcase poetry.lock

  • Update showcase installation documentation

0.7.20 (2024-04-15)

  • Many little fixes

  • Add a lot of documentation in the showcase

0.7.18 (2024-03-29)

  • Fix django_listing.js for autocomplete multi-select

  • Add some documentation

0.7.17 (2024-03-13)

  • Fix to get context processors executed during POST rendering

0.7.16 (2024-03-13)

  • Add widget_class and widget_params for Filter

  • Fix widget creation

  • Fix attached form reset button

0.7.15 (2024-03-12)

  • Add per-action attached form initial data

  • Trigger JS event on selection change

0.7.12 (2024-03-11)

  • Add qs-first & qs-last css class on relevant rows.

  • Add AutoCompleteColumn

  • Add attached_form customize method

0.7.11 (2024-03-01)

  • De-serialize data into UTF-8 in attached form.

0.7.10 (2024-02-29)

  • Fix #19

  • Fix action column

0.7.9 (2024-02-26)

  • Add export toolbar button permission

0.7.8 (2024-02-21)

  • Add spinner while exporting listing to file

  • Check export select file format to not be empty

  • Better default listing name

  • Exported file name has now a timestamp

0.7.7 (2024-02-20)

  • Sanitize strings for Excel export

  • Columns to be exported are now customizable

0.7.5 (2024-02-19)

  • Use base64 for attached form serialization encoding

0.7.4 (2024-02-16)

  • Fix attached_form auto-fill

0.7.3 (2024-02-08)

  • Add animation on attached_form insert

  • Fix pagination

0.7.2 (2024-02-08)

  • Improve insert button management in attached_form

0.7.1 (2024-02-07)

  • Fix group by

  • Add ModelMethodRef and RelatedModelMethodRef

0.7.0 (2024-02-02)

  • Add AttachedForm feature with ajax autofill and actions processing

0.6.4 (2024-01-18)

  • Improve listing insert form

  • add no_foreignkey_link to ManyColumn class

  • add range selection (press shift on second selection)

  • fix FloatColumn

  • fix gettext

  • fix group-by buttons

  • Many fixes when accept_ajax = True

  • Add “Group By” and annotations feature

0.5.17 (2023-11-28)

  • Add FloatFilter

  • Fix XSS issues on ForeignKeyColumns and LinkColumn

  • Improve get_absolute_url() usage

  • Improve default_value on Filter()

  • Add default_value on Filter()

  • Improve foreign key column title

  • Fix word search with filter_queryset_method

  • Fix listing export for Excel

  • Better focus when using Select2 widget

  • Strip HTML tags on data exports

  • Fix exception management for Django 4

  • Add add_one_day option on DateFilter

  • Fix unexpected SQL query with ListingVariations

  • Data Export works with active filters and ajax=True

  • Add filter_queryset_method filter attribute

  • Update fr translations

  • Add links in ManyColumn if get_absolute_url() exists on related objects

  • Add __url_func parameter for edit/delete/view action buttons

0.0.28 (2023-06-27)

  • Add AutocompleteMultipleForeignKeyFilter

  • Add ForeignKeyFilter and AutocompleteForeignKeyFilter

  • Added edit and delete action buttons

  • Fixed action button “see details” modal

  • Improved CSS for small device

  • Auto-detect many-to-many model fields if present in select_columns

  • Fixed choices widgets

  • Improved radio and checkbox in filter form

  • Fixed ModelColumns

  • Added LineNumberColumn()

  • Use scss to generate css files

  • Added showcase with many demo pages see showcase/README.rst

  • Fixed bad form closing

  • Fixed ListingVariation with Ajax

  • Added django-like filter syntax for sequences

  • Added JsonDateTimeColumn class

  • Added support for python 3.10

  • Added possibility to create custom action button linked with listing method

0.0.7 (2020-07-14)

  • First running version

0.0.1 (2018-02-03)

  • Skeleton commit

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-listing-0.7.24.tar.gz (705.7 kB view hashes)

Uploaded Source

Built Distribution

django_listing-0.7.24-py2.py3-none-any.whl (774.9 kB view hashes)

Uploaded Python 2 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