{% extends edc_listboard_template %} {% load edc_base_extras %} {% block listboard_table_header %} # Identifier Subject Age / Born Consented Modified Host {% endblock listboard_table_header %} {% block listboard_table_columns %} {{ result.subject_identifier }} {% if result.gender == MALE %} {% else %} {% endif %} {% if perms.edc_registration.display_firstname %}{{ result.first_name }}{% else %}******{% endif %} {% if perms.edc_registration.display_lastname %}{{ result.initials }}{% else %}******{% endif %} {% age_in_years result.object.dob %}yrs {% if perms.edc_registration.display_dob %}{{ result.object.dob|date:"SHORT_DATE_FORMAT" }}{% else %}**/**/****{% endif %} {{ result.object.consent_datetime|date:"SHORT_DATE_FORMAT" }} {{ result.object.modified|date:"SHORT_DATETIME_FORMAT" }} {{ result.hostname_created }} {% endblock listboard_table_columns %}