From ebaaced6c6b8bd6a1e067444b51396c1d193ffde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Barrag=C3=A1n=20Merino?= Date: Mon, 9 Dec 2013 22:26:08 +0100 Subject: [PATCH] Changed the name for the code to all the colors to use only one formatt instead two --- greenmine/projects/choices.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/greenmine/projects/choices.py b/greenmine/projects/choices.py index c70df157..b0f20b6c 100644 --- a/greenmine/projects/choices.py +++ b/greenmine/projects/choices.py @@ -40,8 +40,8 @@ PRIORITY_CHOICES = ( SEVERITY_CHOICES = ( (1, _(u'Wishlist'), '#666666', False), (2, _(u'Minor'), '#669933', False), - (3, _(u'Normal'), 'blue', True), - (4, _(u'Important'), 'orange', False), + (3, _(u'Normal'), '#0000FF', True), + (4, _(u'Important'), '#FFA500', False), (5, _(u'Critical'), '#CC0000', False), ) @@ -60,7 +60,7 @@ ISSUE_TYPES = ( ) QUESTION_STATUS = ( - (1, _("Pending"), False, 'orange', True), + (1, _("Pending"), False, '#FFA500', True), (2, _("Answered"), False, '#669933', False), (3, _("Closed"), True,'#BFB35A', False), )