File: models.py

package info (click to toggle)
python-django-overextends 0.4.0-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 176 kB
  • sloc: python: 207; makefile: 27
file content (8 lines) | stat: -rw-r--r-- 306 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8

# This app doesn't contain any models, but as its template tags need to
# be added to built-ins at start-up time, this is a good place to do it.
import django

if django.VERSION < (1,9):
    from django.template.base import add_to_builtins
    add_to_builtins("overextends.templatetags.overextends_tags")