sgd_dashboard-1.0.0-beta1/templates/sgd-user-data.html.twig
templates/sgd-user-data.html.twig
<h2>User information</h2>
{% for key, item in data | without('sgd_user_roles') %}
<div class="system-status-report__row system-status-report__{{ key }}">
<div class="system-status-report__status-title" role="button">
{{ item.title }}
</div>
<div class="system-status-report__entry__value">
{{ item.value }}
<div class="description">{{ item.description }}</div>
</div>
</div>
{% endfor %}
<h2>Role information</h2>
<p>Roles and the number of users with that role assigned.</p>
{% for key,item in data.sgd_user_roles %}
<div class="system-status-report__row system-status-report__{{ key }}">
<div class="system-status-report__status-title" role="button">
{{ item.title }}
</div>
<div class="system-status-report__entry__value">
{{ item.value }}
</div>
</div>
{% endfor %}
