mirror of
https://github.com/jazzband/django-categories.git
synced 2026-03-16 22:30:24 +00:00
Version 1.2.1: Fixed i18n and failing test in Django 1.4
This commit is contained in:
parent
b069bcf316
commit
a232b8e6e3
3 changed files with 3 additions and 3 deletions
|
|
@ -1,7 +1,7 @@
|
|||
__version_info__ = {
|
||||
'major': 1,
|
||||
'minor': 2,
|
||||
'micro': 0,
|
||||
'micro': 1,
|
||||
'releaselevel': 'final',
|
||||
'serial': 1
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{% load category_tags %}{% spaceless %}
|
||||
<ul><li><a href="{% url 'categories_tree_list' %}">Top</a>
|
||||
<ul><li><a href="{% url categories_tree_list %}">Top</a>
|
||||
{% for node,structure in path|tree_info %}
|
||||
{% if structure.new_level %}<ul><li>
|
||||
{% else %}</li><li>
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ import django
|
|||
|
||||
APP = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
|
||||
PROJ_ROOT = os.path.abspath(os.path.dirname(__file__))
|
||||
sys.path.append(APP)
|
||||
sys.path.insert(0, APP)
|
||||
DEBUG = True
|
||||
TEMPLATE_DEBUG = DEBUG
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue