25 lines
802 B
Twig
25 lines
802 B
Twig
{% block table_cell_template_status %}
|
|
{%- if hasRole('site-admin') or hasRole('organisations-admin') or (current_user.adminForOrganisations.count > 0) %}
|
|
<script id="{{table.id}}-column-status" type="text/x-handlebars-template">
|
|
{%- verbatim %}
|
|
<td
|
|
{{#ifx row.flag_approved '==' 1 }}
|
|
data-text="approved"
|
|
{{ else }}
|
|
data-text="pending"
|
|
{{/ifx }}
|
|
>
|
|
{{#ifx row.flag_approved '==' 1 }}
|
|
<span>
|
|
{% endverbatim %}{{translate("APPROVED")}}{% verbatim %}
|
|
</span>
|
|
{{ else }}
|
|
<span class="text-yellow">
|
|
{% endverbatim %}{{translate("PENDING")}}{% verbatim %}
|
|
</span>
|
|
{{/ifx }}
|
|
</td>
|
|
{% endverbatim -%}
|
|
</script>
|
|
{% endif -%}
|
|
{% endblock %} |