{% extends "base.html" %} {% block title %}Dashboard - Weibo-HotSign{% endblock %} {% block content %}

Weibo Accounts

+ Add Account
{% if accounts %}
{% for account in accounts %}
{{ account.weibo_user_id }}
{{ account.remark or 'No remark' }}
{% if account.status == 'active' %} Active {% elif account.status == 'pending' %} Pending {% elif account.status == 'invalid_cookie' %} Invalid Cookie {% elif account.status == 'banned' %} Banned {% endif %}
Created: {{ account.created_at[:10] }}
{% endfor %}
{% else %}

No accounts yet

Add your first account
{% endif %} {% endblock %}