{ "info": { "author": "Ryan Bennett", "author_email": "ryan.bennett@outlook.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 1.11", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: JavaScript", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "# django-tabler\n\nThis project transforms the [Tabler](https://github.com/tabler/tabler) dashboard\ninto a Django package. It provides an extensible base template, error page templates,\nand the necessary static assets. django-tabler is based on the latest Tabler\nrelease [v0.0.32](https://github.com/tabler/tabler/releases/tag/v0.0.32).\n\n# Installation\ndjango-tabler was built with Python 3.6 and Django 1.11. Other versions should be compatible, but they haven't been tested. To install:\n* `pip install git+https://github.com/rbennett91/django-tabler`\n* Add `django_tabler` to your `INSTALLED_APPS`\n\n# Usage\nOnce installed, templates inside your application can extend django-tabler's\n[base template](https://github.com/rbennett91/django-tabler/blob/master/django_tabler/templates/django_tabler/base.html). A quick example:\n```\n{% extends \"django_tabler/base.html\" %}\n\n{% block extra_css %}\n {# add your custom css here #}\n{% endblock extra_css %}\n\n{% block content %}\n

This is a Heading

\n

This is a paragraph

\n

{{ some_context_variable }}

\n{% endblock content %}\n\n{% block extra_js %}\n