Skip to main content

Easy lists for django views

Project description

# django-smart-lists

```python
from smart_lists.mixins import SmartListMixin

class AccountListView(LoginRequiredMixin, SmartListMixin, ListView):
model = Account
paginate_by = 100
ordering_allowed_fields = ['company_name', 'code', 'created_date']
list_display = ['company_name', 'code', 'created_date', 'balance']
```

This will give you a click-to-sort table with pagination. All you have to do is to make a template like this:

```html

{% extends "base.html" %}
{% load smart_list %}

{% block content %}
{% smart_list %}
{% endblock %}

```
**The built-in templates are bootstrap 3 compatible - but override them easily (by positioning the apps in INSTALLED_APPS) to fit your own needs**

# Other features

django-smart-lists supports commmon method attributes supported by django admin, such as:

```python

class EpicModel(models.Model):
title = models.CharField(max_length=128)

def get_pretty_title(self):
return "Pretty {}".format(self.title)
get_pretty_title.short_description = 'Pretty Title'
get_pretty_title.admin_order_field = 'title'


### License

MIT License

Copyright (c) 2017 Plecto

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-smart-lists-1.0.21.tar.gz (11.4 kB view details)

Uploaded Source

File details

Details for the file django-smart-lists-1.0.21.tar.gz.

File metadata

  • Download URL: django-smart-lists-1.0.21.tar.gz
  • Upload date:
  • Size: 11.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.9.1 pkginfo/1.4.1 requests/2.18.4 setuptools/36.5.0 requests-toolbelt/0.8.0 tqdm/4.19.1.post1 CPython/2.7.13

File hashes

Hashes for django-smart-lists-1.0.21.tar.gz
Algorithm Hash digest
SHA256 78888baa9f100b83e478fe99b41792c3a23f6f998357573f178fad8cb8e42b10
MD5 d35e0791e7c4c743d845103f766de646
BLAKE2b-256 067e5e075509e309688ed9b0a0b26ff5ab79fd8600788d339d28833bfa515771

See more details on using hashes here.

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