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

Your surveys

{% if not surveys %}

No surveys yet! Click here to add your first survey.

{% else %} {% for survey in surveys %} {% endfor %}

Add new survey

{% endif %}

Welcome, {{ current_user.first_name }}

Add new surveys or click on a survey to start analysing your data.

  • Total surveys: {% if surveys %} {{ surveys | length }} {% else %} 0 {% endif %}
  • {% if notifications > 0 %}
  • Notifications: {{ notifications }}
  • {% else %}
  • Notifications: 0
  • {% endif %}
{% endblock content %}