{% extends "easy_pdf/base.html" %}
{% block title%}Accounts Report{%endblock%}
{% block header%}
{% include 'easy_pdf/header.html'%}
{%endblock%}
{% block content %}
{% for title in titles %}
{{ title }} |
{% endfor %}
{% for account in data %}
{{ account.username }} |
{{ account.groups }} |
{{ account.email }} |
{% if account.is_admin %}
Yes
{% else %}
No
{% endif %} |
{% if account.is_active %}
Active
{% else %}
Disabled
{% endif %} |
{% endfor %}
{% endblock %}
{% block footer %}
{% include 'easy_pdf/footer.html' %}
{%endblock%}