Skip to main content

A template only and DRY solution for creating tables.

Project description

dj-tables

A template only and DRY solution for creating tables.

Specifying how data is displayed should be exclusively done by the template, and this library aims to do this by providing powerful template tags for constructing complex tables.

The full documentation is available on Read the Docs.

Installation

Install the package using pip:

pip install dj-tables

Add dj_tables to your INSTALLED_APPS:

INSTALLED_APPS =(
    # ...
    'dj_tables',
    # ...
)

Basic Example

We start with this basic model:

class MyModel(Model):
    my_field = CharField()
    some_other_field = IntegerField()

and this generic ListView:

class MyListView(ListView):
    model = MyModel
    template_name = 'some_template.html'

And creating the table in your template is straightfoward, add a few tableheader tags with the attributes you want to be rendered.

{% load dj_tables %}
{% table object_list %}
    {% tableheader key='my_field' %}
    {% tableheader key='some_other_field' %}
{% endtable %}

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

dj-tables-1.0.0.tar.gz (7.6 kB view hashes)

Uploaded Source

Built Distribution

dj_tables-1.0.0-py3-none-any.whl (6.2 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