<%inherit file="/appointments/remindlist_body.mako" />
<%def name="showAppointmentActions(appointment)">
<a href="${h.url_for(controller='/caseappointment', action='show',
                     id=appointment.id)}">
  <img src="${h.url_for('/images/icons/open_active_22.png')}" border="0" 
       alt="${_('Show')}" 
       title="${_('Show')}"></a>
% if h.hasRole(['cm_ka']) and session.get('case').getState().getState() == 1:
  <a href="${h.url_for(controller='/caseappointment', action='delete',
                       id=appointment.id, confirmed=0)}">
    <img src="${h.url_for('/images/icons/delete_active_22.png')}" border="0"
         alt="${_('Delete')}" 
         title="${_('Delete')}">
  </a>
% endif
</%def>