Compare commits

...

3 Commits

Author SHA1 Message Date
Fabio Caccamo c784a083f3 Updated version 2017-04-14 13:13:30 +02:00
Fabio Caccamo d1c912e875 Added django 1.11 support 2017-04-14 13:13:12 +02:00
Fabio Caccamo e9e950dda3 Fix error message margin left 2017-04-04 18:09:17 +02:00
5 changed files with 14 additions and 7 deletions
@@ -288,7 +288,8 @@
padding-left:10px !important;
}
form .aligned.wide p.help {
form .aligned.wide p.help,
form .aligned.wide ul.error-list {
margin-left: 200px;
}
+1 -1
View File
@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-
__version__ = '0.3.1'
__version__ = '0.3.2'
+1
View File
@@ -29,6 +29,7 @@ setup(
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
+5 -1
View File
@@ -32,7 +32,11 @@ TEMPLATES = [{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {},
'OPTIONS': {
'context_processors': [
'django.contrib.auth.context_processors.auth',
]
},
},]
DATABASES = {
+5 -4
View File
@@ -1,9 +1,9 @@
[tox]
envlist =
py27-{17,18,19,110},
py34-{17,18,19,110},
py35-{18,19,110},
py36-{18,19,110},
py27-{17,18,19,110,111},
py34-{17,18,19,110,111},
py35-{18,19,110,111},
py36-{18,19,110,111},
[testenv]
passenv = CI TRAVIS TRAVIS_*
deps =
@@ -11,6 +11,7 @@ deps =
18: Django >= 1.8, < 1.9
19: Django >= 1.9, < 1.10
110: Django >= 1.10, < 1.11
111: Django >= 1.11, < 1.12
coverage
codecov
commands =