adagios icon indicating copy to clipboard operation
adagios copied to clipboard

Inconsistent capitalization in Host view.

Open cmstar0 opened this issue 8 years ago • 0 comments

Small, easily fixed, capitalization issue.

In status view, click on a service and you will see:

Service on host

However, if you click on a host you will see:

host

Host should be capitalized as the first word, like service is in the example above. This resides in the following file:

adagios/adagios/status/templates/status_detail.html

Below is a diff of the change I've made in my setup to correct this:

14,16c14 < <small>{{ service.display_name }}</small>{% trans " on host" %} < {% else %} < {% trans "Host" %} --- > <small>{{ service.display_name }}</small>{% trans " on" %} 18a17 > {% trans "host" %}

Not a huge issue, but hope it helps with consistency.

  • Cory

cmstar0 avatar Mar 07 '16 19:03 cmstar0