{% extends "template.html" %} {% block content %}

Dashboard

Your personal dashboard

Current automatized tweets


{% if current_user.twitter_api.first() %} {% for t in tweets %} {% endfor %}
Tweet Slots Keywords Actions
{{ t['text'] }}
{{ t['slots'] }} {{ t['keywords'] }} Disable Delet
{% else %}

Twitter API not connected

{% endif %}

Add an automatized tweet


{% if current_user.twitter_api.first() %}
{% for t in timeline %}
{% endfor %}
{% else %}

Twitter API not connected

{% endif %}

Trello board


{% if current_user.trello_api.first() %}

Choose a board

{% for b in boards %}
{% endfor %}

Choose a column

{% if columns %}
{% for c in columns %}
{% endfor %}
{% else %}

No board set yet

{% endif %}
{% else %}

Trello API not connected

{% endif %}
{% endblock %}