django-listing


Namedjango-listing JSON
Version 0.7.24 PyPI version JSON
download
home_pagehttps://github.com/elapouya/django-listing
SummaryLibrary for creating HTML listing / table / data grid
upload_time2024-04-24 02:59:44
maintainerNone
docs_urlNone
authorEric Lapouyade
requires_pythonNone
licenseGPLv3+
keywords table datatable listing data grid
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
==============
django-listing
==============

.. image:: https://raw.githubusercontent.com/elapouya/django-listing/master/docs/_static/readme_intro1.png
.. image:: 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 <https://python-poetry.org/docs/>`_ 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 <https://github.com/elapouya/django-listing/blob/master/LICENSE.rst>`_ file for more informations.


Documentation
-------------

Please, `read the doc <http://django-listing.readthedocs.org>`_  (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


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/elapouya/django-listing",
    "name": "django-listing",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "table, datatable, listing, data grid",
    "author": "Eric Lapouyade",
    "author_email": "elapouya@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/ec/1a/6521ef786efd20e313c93210ed3f84e5781731bbd972c5623a8d41c690af/django-listing-0.7.24.tar.gz",
    "platform": null,
    "description": "\n==============\ndjango-listing\n==============\n\n.. image:: https://raw.githubusercontent.com/elapouya/django-listing/master/docs/_static/readme_intro1.png\n.. image:: https://raw.githubusercontent.com/elapouya/django-listing/master/docs/_static/readme_intro2.png\n\nDjango app for building HTML listings / tables, it includes many features :\n\n* Any iterable, Django QuerySet or model can be used.\n* Most listings can be configured into a template file without touching a python file\n* A class-based ListingView is provided if you want to code a listing at python side\n* It as an Ajax mode to save requests to the server\n* Uses JQuery if ajax is activated\n* Customized for Bootstrap by default, but can be easily customized in many way (templates, icons, etc...)\n* You can select columns to display, columns title, default sorting etc..\n* Pagination is highly customizable (buttons to display, goto page, ellipsis, icons et labels)\n* Rows can be <div> instead of <tr>, so it is possible to format data in many ways\n* A lot of column types are provided, they are automatically created when a\n  QuerySet or a model is provided\n* Columns are class-bases and one can create custom ones\n* Columns manage One-to-many, Many-to-many and foreign relations\n* Provides aggregation columns : sum, avg, min, max values\n* Provides page-level and global aggregation : sum, avg, min, max values displayed at listing last row\n* Provides columns to make a link to the object, a custom link, checkbox, select box, text input...\n* Provides \"action column\" that comes with many actions : show, edit, delete, move up, move down...\n* is able to manage multiple variations to present data in multiple way at the same place\n  (text only listing, text+image listing, image only listing for example)\n* Uses Django translation framework : one can translate the listing as needed\n* Toolbars can be added at the top and/or at the bottom to make actions\n* Built-in toolbar action are : sorting, select a listing variation, number of rows per page,\n  export data. They are customizable.\n* Toolbar items are class-based : one can create a custom one easily\n* django-listing can automatically create a filter form (aka search form)\n* Listing rows can be selectable in order to apply some actions\n* Listings can be editable for mass updates\n* django-listing can automatically create a form for inserting data to database\n* One can upload files/images into a listing, it uses DropzoneJS (Work in progress)\n* ListingView can manage itself database inserting, editing, deleting, filtering, uploads and actions :\n  no need to develop any code for that.\n* django-listing comes with hundreds of icons as a scalable font\n* django-listing is faster than django-table2\n\n\nShowcase\n--------\n\nA demo is included in source code, you will need `poetry <https://python-poetry.org/docs/>`_ to install python environment::\n\n    curl -sSL https://install.python-poetry.org | python3 -\n\nGet the source code::\n\n    git clone https://github.com/elapouya/django-listing.git\n\nTo install the python envionment::\n\n    cd django_listing/showcase\n    poetry install --no-root\n\nCheck you are in ``showcase/`` directory, then start the Django from poetry environment::\n\n    poetry run python manage.py runserver 8123\n\nA sqlite database is already included, you do not have to make any migration,\njust open your brower at http://localhost:8123\n\n\nLicense\n-------\nDjango-listing is licensed under the GPLv3 license for all open source applications.\nA commercial license is required for all commercial applications or non-open applications\n\nSee `LICENSE.rst <https://github.com/elapouya/django-listing/blob/master/LICENSE.rst>`_ file for more informations.\n\n\nDocumentation\n-------------\n\nPlease, `read the doc <http://django-listing.readthedocs.org>`_  (Work in progress)\n\nNews\n----\n\n0.7.24 (2024-04-18)\n-------------------\n- Fix up & down icons in SortSelectToolbarItem to be displayed on Firefox\n- Add some documentions\n\n0.7.23 (2024-04-18)\n-------------------\n- Add icons on buttons for filter form and attached form\n\n0.7.21 (2024-04-16)\n-------------------\n- Update showcase poetry.lock\n- Update showcase installation documentation\n\n0.7.20 (2024-04-15)\n-------------------\n- Many little fixes\n- Add a lot of documentation in the showcase\n\n0.7.18 (2024-03-29)\n-------------------\n- Fix django_listing.js for autocomplete multi-select\n- Add some documentation\n\n0.7.17 (2024-03-13)\n-------------------\n- Fix to get context processors executed during POST rendering\n\n0.7.16 (2024-03-13)\n-------------------\n- Add widget_class and widget_params for Filter\n- Fix widget creation\n- Fix attached form reset button\n\n0.7.15 (2024-03-12)\n-------------------\n- Add per-action attached form initial data\n- Trigger JS event on selection change\n\n0.7.12 (2024-03-11)\n-------------------\n- Add qs-first & qs-last css class on relevant rows.\n- Add AutoCompleteColumn\n- Add attached_form customize method\n\n0.7.11 (2024-03-01)\n-------------------\n- De-serialize data into UTF-8 in attached form.\n\n0.7.10 (2024-02-29)\n-------------------\n- Fix #19\n- Fix action column\n\n0.7.9 (2024-02-26)\n------------------\n- Add export toolbar button permission\n\n0.7.8 (2024-02-21)\n------------------\n- Add spinner while exporting listing to file\n- Check export select file format to not be empty\n- Better default listing name\n- Exported file name has now a timestamp\n\n0.7.7 (2024-02-20)\n------------------\n- Sanitize strings for Excel export\n- Columns to be exported are now customizable\n\n0.7.5 (2024-02-19)\n------------------\n- Use base64 for attached form serialization encoding\n\n0.7.4 (2024-02-16)\n------------------\n- Fix attached_form auto-fill\n\n0.7.3 (2024-02-08)\n------------------\n- Add animation on attached_form insert\n- Fix pagination\n\n0.7.2 (2024-02-08)\n------------------\n- Improve insert button management in attached_form\n\n0.7.1 (2024-02-07)\n------------------\n- Fix group by\n- Add ModelMethodRef and RelatedModelMethodRef\n\n0.7.0 (2024-02-02)\n------------------\n- Add AttachedForm feature with ajax autofill and actions processing\n\n0.6.4 (2024-01-18)\n------------------\n- Improve listing insert form\n- add no_foreignkey_link to ManyColumn class\n- add range selection (press shift on second selection)\n- fix FloatColumn\n- fix gettext\n- fix group-by buttons\n- Many fixes when accept_ajax = True\n- Add \"Group By\" and annotations feature\n\n0.5.17 (2023-11-28)\n-------------------\n- Add FloatFilter\n- Fix XSS issues on ForeignKeyColumns and LinkColumn\n- Improve get_absolute_url() usage\n- Improve default_value on Filter()\n- Add default_value on Filter()\n- Improve foreign key column title\n- Fix word search with filter_queryset_method\n- Fix listing export for Excel\n- Better focus when using Select2 widget\n- Strip HTML tags on data exports\n- Fix exception management for Django 4\n- Add add_one_day option on DateFilter\n- Fix unexpected SQL query with ListingVariations\n- Data Export works with active filters and ajax=True\n- Add filter_queryset_method filter attribute\n- Update fr translations\n- Add links in ManyColumn if get_absolute_url() exists on related objects\n- Add __url_func parameter for edit/delete/view action buttons\n\n0.0.28 (2023-06-27)\n-------------------\n- Add AutocompleteMultipleForeignKeyFilter\n- Add ForeignKeyFilter and AutocompleteForeignKeyFilter\n- Added edit and delete action buttons\n- Fixed action button \"see details\" modal\n- Improved CSS for small device\n- Auto-detect many-to-many model fields if present in select_columns\n- Fixed choices widgets\n- Improved radio and checkbox in filter form\n- Fixed ModelColumns\n- Added LineNumberColumn()\n- Use scss to generate css files\n- Added showcase with many demo pages see showcase/README.rst\n- Fixed bad form closing\n- Fixed ListingVariation with Ajax\n- Added django-like filter syntax for sequences\n- Added JsonDateTimeColumn class\n- Added support for python 3.10\n- Added possibility to create custom action button linked with listing method\n\n0.0.7 (2020-07-14)\n------------------\n- First running version\n\n0.0.1 (2018-02-03)\n------------------\n- Skeleton commit\n\n",
    "bugtrack_url": null,
    "license": "GPLv3+",
    "summary": "Library for creating HTML listing / table / data grid",
    "version": "0.7.24",
    "project_urls": {
        "Homepage": "https://github.com/elapouya/django-listing"
    },
    "split_keywords": [
        "table",
        " datatable",
        " listing",
        " data grid"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7daf709a29a3725f8ce3623744acabc02fa7eea054c8b108f08e306cb566647f",
                "md5": "60fcf962b7d2d9d628eaca5654dfe938",
                "sha256": "58c9fa2fdd8f63b38e1e4208fa76268aeea36f236b21aebe22211f4b74d9196a"
            },
            "downloads": -1,
            "filename": "django_listing-0.7.24-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "60fcf962b7d2d9d628eaca5654dfe938",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 774931,
            "upload_time": "2024-04-24T02:59:41",
            "upload_time_iso_8601": "2024-04-24T02:59:41.782784Z",
            "url": "https://files.pythonhosted.org/packages/7d/af/709a29a3725f8ce3623744acabc02fa7eea054c8b108f08e306cb566647f/django_listing-0.7.24-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec1a6521ef786efd20e313c93210ed3f84e5781731bbd972c5623a8d41c690af",
                "md5": "95447f062e78668ba7e59620852b5d3a",
                "sha256": "f691c9a515882c3fcc0153daca8f2d7467e7e5293708fcd2ec1630737047775a"
            },
            "downloads": -1,
            "filename": "django-listing-0.7.24.tar.gz",
            "has_sig": false,
            "md5_digest": "95447f062e78668ba7e59620852b5d3a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 705664,
            "upload_time": "2024-04-24T02:59:44",
            "upload_time_iso_8601": "2024-04-24T02:59:44.866373Z",
            "url": "https://files.pythonhosted.org/packages/ec/1a/6521ef786efd20e313c93210ed3f84e5781731bbd972c5623a8d41c690af/django-listing-0.7.24.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-24 02:59:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "elapouya",
    "github_project": "django-listing",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "django-listing"
}
        
Elapsed time: 0.25773s