{% extends "admin.html" %}
{% load url from future %}
{% block headtitle %}Bios - {% endblock %}
{% block meeting_information_active %}active{% endblock %}
{% block content %}
{% if pending_bios %}
Pending Bios
| Name |
Email |
Created |
|
{% for bio in pending_bios %}
| {{ bio.name }} |
{{ bio.email_address }} |
{{ bio.created }} |
Resend Details |
|
|
{% endfor %}
{% endif %}
{% if completed_bios %}
Completed Bios
| Name |
Email |
Created |
Details Entered |
|
{% for bio in completed_bios %}
| {{ bio.name }} |
{{ bio.email_address }} |
{{ bio.created }} |
{% if bio.updated %}{{ bio.updated }}{% else %}No{% endif %} |
{% if bio.image %}
Download Image
{% endif %}
|
|
|
{% endfor %}
{% endif %}
{% endblock %}