Metadata-Version: 2.0
Name: djcorecap
Version: 1.0.1
Summary: Useful functions, tags, and Bootstrap-friendly templates for Django.
Home-page: https://github.com/ChrisPappalardo/djcorecap
Author: Chris Pappalardo
Author-email: cpappala@gmail.com
License: MIT license
Keywords: djcorecap
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Dist: django

=========
djcorecap
=========

Core app for Django projects that provides essential functions, tags, and
enhanced Bootstrap-friendly templates.

* Free software: MIT license


Features
--------

* Custom base template that plays nicely with Bootstrap (and themes)
* Custom allauth templates that play nicely with Bootstrap (and themes)
* Paginator template snippet ready for inclusion in other templates
* Convenience functions to support Bokeh plots
* Template tags for auto-setting links to active and formatting percentages
* Bootstrap test page


Installation
------------

Add djcorecap to your INSTALLED_APPS in settings.
Ensure that it comes before all other third party apps to enable 
template overrides, etc.  

If you plan to use the app's base template 
as your project's base template, replace base.html in 
project/templates/ with a file containing the following:

.. code-block:: jinja

   {% extends 'djcorecap/base.html' %}

If you plan to use djcorecap's version of the allauth templates, delete 
the account/ folder (if exists) from project/templates/.


=======
History
=======

0.1.0 (2018-03-24)
------------------

* First release

1.0.0 (2020-04-10)
------------------

* First PyPI production release


