{% extends 'layout.html' %} {% set title = 'Admin' %} {% block css %} {% endblock %} {% block body %}
Active Plans
    {% for plan in plans_active %}
  • {{ plan.name }} : {{ plan.description }}

    Type of plan: {{ plan.type }}

    Create Time: {{ plan.create_time }}

    Update Time: {{ plan.update_time }}

  • {% endfor %}
Created Plans
    {% for plan in plans_created %}
  • {{ plan.name }} : {{ plan.description }}

    Type of plan: {{ plan.type }}

    Create Time: {{ plan.create_time }}

    Update Time: {{ plan.update_time }}

  • {% endfor %}
{% endblock %} {% block js %} {% endblock %}