mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-01-19 04:19:54 +01:00
commit
ea9b772f35
11
.travis.yml
11
.travis.yml
@ -3,10 +3,11 @@ python:
|
|||||||
- "2.6"
|
- "2.6"
|
||||||
- "2.7"
|
- "2.7"
|
||||||
env:
|
env:
|
||||||
- DJANGO=1.4.3
|
- DJANGO=1.4.13
|
||||||
- DJANGO=1.3.5
|
- DJANGO=1.5.8
|
||||||
- DJANGO=1.5.0
|
- DJANGO=1.6.5
|
||||||
install:
|
install:
|
||||||
- pip install argparse --use-mirrors
|
- pip install argparse
|
||||||
- pip install -q Django==$DJANGO --use-mirrors
|
- pip install -q Django==$DJANGO
|
||||||
|
- pip install -q -r requirements.txt
|
||||||
script: python quicktest.py helpdesk
|
script: python quicktest.py helpdesk
|
||||||
|
@ -1194,6 +1194,7 @@ class CustomField(models.Model):
|
|||||||
|
|
||||||
empty_selection_list = models.BooleanField(
|
empty_selection_list = models.BooleanField(
|
||||||
_('Add empty first choice to List?'),
|
_('Add empty first choice to List?'),
|
||||||
|
default=False,
|
||||||
help_text=_('Only for List: adds an empty first entry to the choices list, which enforces that the user makes an active choice.'),
|
help_text=_('Only for List: adds an empty first entry to the choices list, which enforces that the user makes an active choice.'),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -22,6 +22,7 @@ class QuickDjangoTest(object):
|
|||||||
'django.contrib.admin',
|
'django.contrib.admin',
|
||||||
'django.contrib.staticfiles',
|
'django.contrib.staticfiles',
|
||||||
'django.contrib.messages',
|
'django.contrib.messages',
|
||||||
|
'bootstrapform',
|
||||||
)
|
)
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
|
Loading…
Reference in New Issue
Block a user