{# Copyright (C) 2006-2023 Edgewall Software This software is licensed as described in the file COPYING, which you should have received as part of this distribution. The terms are also available at https://trac.edgewall.org/wiki/TracLicense. This software consists of voluntary contributions made by many individuals. For the exact contribution history, see the revision history and logs, available at https://trac.edgewall.org/. #} # extends 'admin.html' # block admintitle ${label_plural} # endblock admintitle # block head ${ super() } # if view == 'detail': # endif # endblock head # block adminpanel

# set nb_enums # if view == 'list': (${len(enums)}) # endif # endset # trans label_plural, nb_enums Manage ${label_plural} ${nb_enums} # endtrans

# if view == 'detail':
${jmacros.form_token_input()}
${_("Modify %(label_singular)s:", label_singular=label_singular)}
# else:
${jmacros.form_token_input()}
${_("Add %(label_singular)s:", label_singular=label_singular)}
# if enums:
${jmacros.form_token_input()} # for enum in enums: # endfor
${_("Name")}${_("Default")}${_("Order")}
${enum.name}

# trans You can remove all items from this list to completely hide this field from the user interface. # endtrans

# if type == 'priority':

# trans note = jmacros.note() ${note} The order of priorities determines the coloring of entries in the ticket queries and reports. # endtrans

# endif
# else:

# trans As long as you don't add any items to the list, this field will remain completely hidden from the user interface. # endtrans

# endif # endif # call(note, page) jmacros.wikihelp('TracTickets'): # trans note, page ${note} See ${page} for help on using the ticket system. # endtrans # endcall
# endblock adminpanel