designetwork(EN)

IT technical memo of networking

Mark up overdue tickets of Redmine in listing (using View Customize Plugin)

Task management in Redmine, markup overestimated tickets helps to prevent countermeasure leakage. Equivalent effects can be expected by using remind mail, but it is easy to grasp the situation by markup even when displaying the list.

Implementation image

Display overdue tickets with bold & red letters . If you adjust CSS, you can also expand and narrow down the parts to be marked up.

Environment

To customize CSS, use this Redmine view customize plugin .

github.com

Mark up expiration tickets View Customize CSS

Path pattern: /projects/.*/issues

Type: StyleSheet

Code:

/* Markup Overdue Issues */

tr.overdue{
font-weight: bold;
color: red;
}

(Reference) Redmine's date exceeded element name

www.redmine.org

Conclusion - Mark up overdue tickets of Redmine in listing (using View Customize Plugin)

By customizing Redmine 's CSS, you can mark up the overdue ticket when displaying the list.


This Blog is English Version of my JP's.

Sorry if my English sentences are incorrect.

designetwork