aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--servo/models/queue.py2
-rw-r--r--servo/templates/admin/checklist/form.html8
2 files changed, 9 insertions, 1 deletions
diff --git a/servo/models/queue.py b/servo/models/queue.py
index 28d04c3..4b6c2a9 100644
--- a/servo/models/queue.py
+++ b/servo/models/queue.py
@@ -28,7 +28,7 @@ class Queue(models.Model):
locations = models.ManyToManyField(
Location,
- null=True,
+ blank=True,
verbose_name=_('locations'),
help_text=_("Pick the locations you want this queue to appear in.")
)
diff --git a/servo/templates/admin/checklist/form.html b/servo/templates/admin/checklist/form.html
index 3b44576..25c82da 100644
--- a/servo/templates/admin/checklist/form.html
+++ b/servo/templates/admin/checklist/form.html
@@ -29,3 +29,11 @@
</div>
</form>
{% endblock third_column %}
+
+{% block media %}
+ <style type="text/css">
+ textarea {
+ height: 50px;
+ }
+ </style>
+{% endblock media %} \ No newline at end of file