<span style="font-family: monospace"><% $status_indicator %></span>
<%args>
$status => ''
</%args>

<%init>
my $status_indicator = '[ ]';

if ($status eq 'new') {
  $status_indicator = '[ ]';
}
elsif ($status eq 'open') {
  $status_indicator = '[ ]';
}
elsif ($status eq 'resolved') {
  $status_indicator = '[done]';
}
elsif ($status eq 'rejected') {
  $status_indicator = '[X]';
}
</%init>