diff --git a/wire/modules/Process/ProcessTemplate/ProcessTemplate.module b/wire/modules/Process/ProcessTemplate/ProcessTemplate.module index 07acdd24..85000d6b 100644 --- a/wire/modules/Process/ProcessTemplate/ProcessTemplate.module +++ b/wire/modules/Process/ProcessTemplate/ProcessTemplate.module @@ -381,7 +381,11 @@ class ProcessTemplate extends Process { $row = array(); $row["{$template->name} "] = "edit?id={$template->id}"; - if($useLabel) $row[] = $this->sanitizer->entities($template->getLabel()); + if($useLabel) { + $icon = $template->getIcon(); + $icon = $icon ? wireIconMarkup($icon, 'fw') : ''; + $row[] = $icon . $this->sanitizer->entities($template->getLabel()); + } $row[] = "$numFields "; $row["{$numPages} "] = "$numPagesLink"; // space is required to make it work $row[] = $template->modified > 0 ? "$template->modified" . wireRelativeTimeStr($template->modified) : '';