{% extends "admin.html" %} {% load url from future %} {% block headtitle %}Bios - {% endblock %} {% block meeting_information_active %}active{% endblock %} {% block content %}
{% if pending_bios %}

Pending Bios

{% for bio in pending_bios %} {% endfor %}
Name Email Created
{{ bio.name }} {{ bio.email_address }} {{ bio.created }} Resend Details
{% endif %} {% if completed_bios %}

Completed Bios

{% for bio in completed_bios %} {% endfor %}
Name Email Created Details Entered
{{ bio.name }} {{ bio.email_address }} {{ bio.created }} {% if bio.updated %}{{ bio.updated }}{% else %}No{% endif %} {% if bio.image %} Download Image {% endif %}
{% endif %}
{% endblock %}