{% extends "base.html" %}
{% block title %}KTVManager{% endblock %}
{% block content %}
Welcome {{ username }}!
You have {{ accounts }} active accounts
{% if current_month_accounts %}
Accounts Expiring Within 30 Days
Stream Name |
Username |
Expiry Date |
{% for account in current_month_accounts %}
{{ account.stream }} |
{{ account.username }} |
{{ account.expiaryDate_rendered }} {% if account.days_to_expiry is defined %}({{ account.days_to_expiry }} days){% endif %} |
{% endfor %}
{% endif %}
{% if expired_accounts %}
Expired Accounts
Stream Name |
Username |
Expiry Date |
{% for account in expired_accounts %}
{{ account.stream }} |
{{ account.username }} |
{{ account.expiaryDate_rendered }} |
{% endfor %}
{% endif %}
{% endblock %}
{% block scripts %}
{% endblock %}