Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c784a083f3 | |||
| d1c912e875 | |||
| e9e950dda3 |
@@ -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,4 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
__version__ = '0.3.1'
|
||||
__version__ = '0.3.2'
|
||||
|
||||
|
||||
@@ -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
@@ -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 = {
|
||||
|
||||
@@ -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 =
|
||||
|
||||
Reference in New Issue
Block a user