Skip to content

Commit 20fab65

Browse files
committed
Remove use of django-user-accounts templatetag
Update major version for backward incompatible change
1 parent b0ce766 commit 20fab65

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,10 @@ or customize the template code.
112112

113113
## Change Log
114114

115+
### 2.0.0
116+
117+
* Remove django-user-accounts template tags from pinax-documents templates **Backward incompatible, requires pinax-documents>=1.0.2+**
118+
115119
### 1.0.4
116120

117121
* Add pinax-calendars templates

pinax/templates/templates/pinax/documents/_member_table.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% load account_tags pinax_documents_tags %}
1+
{% load pinax_documents_tags %}
22

33
<div class="member-table-container">
44
<h3>

pinax/templates/templates/pinax/documents/folder_share.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{% block body_class %}{{ block.super }} pinax-documents-folder-share{% endblock %}
44

55
{% load bootstrap %}
6-
{% load account_tags %}
6+
{% load pinax_documents_tags %}
77

88
{% block head_title %}Share folder{% endblock %}
99

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import find_packages, setup
22

3-
VERSION = "1.0.4"
3+
VERSION = "2.0.0"
44
LONG_DESCRIPTION = """
55
.. image:: http://pinaxproject.com/pinax-design/patches/pinax-templates.svg
66
:target: https://pypi.python.org/pypi/pinax-templates/

0 commit comments

Comments
 (0)