{% extends "app.html" %} {% block body_class %}{{ block.super }} page-dashboard{% endblock %} {% block content %}

Create New Pod

{% if pods %}
{% for pod in pods %}

{{ pod.name }}

{{ pod.get_status_display }}
Created {{ pod.created_at|date:"Y-m-d H:i" }} {% if pod.deadline %} Expires {% endif %} {% if pod.self_destruct %} Self-destruct {% endif %}
View
{% csrf_token %}
{% endfor %}
{% else %}

You haven't created any pods yet. Create your first pod to get started.

{% endif %} {% endblock %}