employee_report.html (465B)
1 {% extends 'base.html' %} 2 3 {% block title %}Employee Reports{% endblock %} 4 5 {% block content %} 6 <section class="admin-grid"> 7 <!-- returned values from admin check is array of permissive ACCESS else return 'missing permissions response' --> 8 {%- for x in ['reports','employee_report','roles','users'] %} 9 {% include 'admin/'~x~'/widget.html' %} 10 {%- else-%} 11 {{ 'You do not have permission to access this page' }} 12 {%- endfor %} 13 </section> 14 {% endblock %}