{% extends "easy_pdf/base.html" %} {% block title%}Accounts Report{%endblock%} {% block header%} {% include 'easy_pdf/header.html'%} {%endblock%} {% block content %}
{% for title in titles %} {% endfor %}
{{ title }}

{% for account in data %} {% endfor %}
{{ account.username }} {{ account.groups }} {{ account.email }} {% if account.is_admin %} Yes {% else %} No {% endif %} {% if account.is_active %} Active {% else %} Disabled {% endif %}
{% endblock %} {% block footer %} {% include 'easy_pdf/footer.html' %} {%endblock%}