{% extends "dashboard/table.html" %} {% load staticfiles %} {% block table %} Username Full Name Email Company SSH Key GPG Key {% for user in users %} {{ user.username }} {{ user.userprofile.full_name }} {{ user.userprofile.email_addr }} {{ user.userprofile.company }} {% if user.userprofile.ssh_public_key %} SSH {% endif %} {% if user.userprofile.pgp_public_key %} GPG {% endif %} {% endfor %} {% endblock table %} {% block tablejs %} {% endblock tablejs %}