{% extends "persons/master.html" %} {% block title %} {% if domainObject %} {% firstof domainObject.fullname domainObject.name %} {% else %} No User! {% endif %} {% endblock %} {% block content %}

{% firstof domainObject.fullname domainObject.name %}

details
{% if domainObject.researcher %} {% if domainObject.researcher.getSafetyTrainingCertificateId %}
certificate
{% endif %} {% endif %}
{% if domainObject.isActive and view.canUpdatePerson %}
Do you wish to update the registeration?

{% endif %} {% if domainObject.isPending and view.canApprovePerson %}
Do you wish to approve the registration?

{% endif %} {% if view.canDeletePerson %}
Do you wish to delete the registration?

{% endif %} {% endblock %}