changeset 5890:0a6da75d6b07

pullrequests: change ordering of vote buttons - make more natural progression flow from left to right
author Mads Kiilerich <madski@unity3d.com>
date Wed, 04 May 2016 01:18:25 +0200
parents 52a10832bbb0
children 9a5cf82c1ea8
files kallithea/model/db.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/model/db.py	Wed May 04 01:18:25 2016 +0200
+++ b/kallithea/model/db.py	Wed May 04 01:18:25 2016 +0200
@@ -2234,9 +2234,9 @@
 
     STATUSES = [
         (STATUS_NOT_REVIEWED, _("Not reviewed")),  # (no icon) and default
-        (STATUS_APPROVED, _("Approved")),
+        (STATUS_UNDER_REVIEW, _("Under review")),
         (STATUS_REJECTED, _("Not approved")),
-        (STATUS_UNDER_REVIEW, _("Under review")),
+        (STATUS_APPROVED, _("Approved")),
     ]
     STATUSES_DICT = dict(STATUSES)