Skip to content

benbacardi/django-jquery-qtip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-jquery-qtip

Version Badge Wheel Status Badge License Badge

jQuery qTip packaged in a django app to speed up new applications and deployment.

Note that this does not include jQuery or jQuery UI itself, use a package such as django-jquery or django-jquery-ui to do so.

Installation

Install using pip:

pip install django-jquery-qtip

Add to jquery_qtip to your INSTALLED_APPS in settings.py:

INSTALLED_APPS = (
    ...
    'jquery_qtip',
    ...
)

Run collectstatic to bring in the qTip static files.

Usage

In your template, load Django's static template tag library:

{% load static %}

Then use the static template tag to load the qTip files:

<script type='text/javascript' src='{% static 'js/jquery.qtip.js' %}'></script>
<link rel='stylesheet' type='text/css' href='{% static 'css/jquery.qtip.css' %}' />

About

jQuery qTip packaged in a django app to speed up new applications and deployment.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages