Skip to main content

A Django app to turn easily QuerySets into tables

Project description

===== Magic Tables

Magic Tables is a Django app to turn QuerySets into any kind of table.

Detailed documentation is in the "docs" directory.

Quick start

  • Install package

    ::

      $ pip install django-magic-tables
    
  • Add "magic_tables" to your INSTALLED_APPS setting like this:

    ::

      INSTALLED_APPS = [
          ...
          'magic_tables',
      ]
    
  • Load "magic_tables_tags" at the top of the page where you want to use them like this:

    ::

      {% load magic_tables_tags %}
      [...]
    
  • Create a magic table:

    ::

      [...]
    
      {% table object_list "optional classes separated by spaces" %}
    
      [...]
    

Use it with Datatable

  • Include CSS

    ::

      <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.21/css/dataTables.bootstrap4.min.css">
      <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/responsive/2.2.4/css/responsive.bootstrap4.min.css">
    
  • Include JS

    ::

      <script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.10.21/js/jquery.dataTables.js"></script>
      <script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.10.21/js/dataTables.bootstrap4.min.js"></script>
      <script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/responsive/2.2.4/js/dataTables.responsive.min.js"></script>
      <script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/responsive/2.2.4/js/responsive.bootstrap4.min.js"></script>
      <script>
          $(document).ready( function () {
              $('.data-table').DataTable( {
                  'language': {
                      'lengthMenu': '_MENU_ Results for page',
                      'zeroRecords': 'No results',
                      'info': 'Page _PAGE_ of _PAGES_',
                      'infoEmpty': 'No results',
                      'infoFiltered': '(Filtered on _MAX_ total results)',
                      'search': 'Search: ',
                      'paginate': {
                          'first': 'First',
                          'last': 'Last',
                          'next': 'Next',
                          'previous': 'Previous'
                      }
                  },
                  'initComplete': () => { $('.data-table').fadeIn(); $('.graph').fadeIn(); }
              } );
          } );
      </script>
    
  • Pass "data-table" as second parameter to the table tag like this:

    ::

      {% table object_list "data-table" %}
    

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-magic-tables-0.3.3.3.tar.gz (4.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_magic_tables-0.3.3.3-py3-none-any.whl (5.3 kB view details)

Uploaded Python 3

File details

Details for the file django-magic-tables-0.3.3.3.tar.gz.

File metadata

  • Download URL: django-magic-tables-0.3.3.3.tar.gz
  • Upload date:
  • Size: 4.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0.post20201221 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.6.9

File hashes

Hashes for django-magic-tables-0.3.3.3.tar.gz
Algorithm Hash digest
SHA256 26d6da02f8814a1c53288ccf8792d9cfda55051cdfe61dee6c1f5f12f8c2601f
MD5 521b65eb16cbfdf22fa799254b814edd
BLAKE2b-256 e212ca8ca669a56ec428886a7fc1c0cd4a49fd25376dda6b63c6b2689b4d7e8e

See more details on using hashes here.

File details

Details for the file django_magic_tables-0.3.3.3-py3-none-any.whl.

File metadata

  • Download URL: django_magic_tables-0.3.3.3-py3-none-any.whl
  • Upload date:
  • Size: 5.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0.post20201221 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.6.9

File hashes

Hashes for django_magic_tables-0.3.3.3-py3-none-any.whl
Algorithm Hash digest
SHA256 2e71663adc6dcfad9adf643406f977ca6f3ff330730aab7542ee6fde1e6a710e
MD5 4043e80e4e5c171281de0d62b970e6dd
BLAKE2b-256 0db8c4af24470190c913d13cf76eb868baf3c9177833633f8707acd9631a02f7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page