diff --git a/trac/admin/templates/admin_enums.html b/trac/admin/templates/admin_enums.html
|
a
|
b
|
|
| 73 | 73 | You can remove all items from this list to completely hide this |
| 74 | 74 | field from the user interface. |
| 75 | 75 | </p> |
| | 76 | <p class="help" py:if="type=='priority'"> |
| | 77 | Note: Keep high-to-low order regardless of label names here, |
| | 78 | because it affects ticket coloring in queries and reports. |
| | 79 | </p> |
| 76 | 80 | </form> |
| 77 | 81 | |
| 78 | 82 | <p py:otherwise="" class="help"> |
diff --git a/trac/ticket/admin.py b/trac/ticket/admin.py
|
a
|
b
|
|
| 597 | 597 | |
| 598 | 598 | def _render_admin_panel(self, req, cat, page, path_info): |
| 599 | 599 | label = [gettext(each) for each in self._label] |
| 600 | | data = {'label_singular': label[0], 'label_plural': label[1]} |
| | 600 | data = {'label_singular': label[0], 'label_plural': label[1], 'type': self._type} |
| 601 | 601 | |
| 602 | 602 | # Detail view? |
| 603 | 603 | if path_info: |