{% extends "base.html" %} {% block title %}Dashboard · SubmitStream{% endblock %} {% block content %}

Your forms

{% if user.is_admin %}Manage forms & clients{% endif %}
{% if viewas_targets %}
Read-only preview of what that user sees.
{% endif %} {% if rows %}
{% for r in rows %} {% endfor %}
FormEntriesUnread
{{ r.form['name'] }}
{{ r.form['public_key'] }}{% if not r.form['active'] %} · inactive{% endif %}
{{ r.total }} {% if r.unread %}{{ r.unread }}{% else %}0{% endif %} Entries · Integrate · Settings
{% else %}

No forms yet.{% if user.is_admin %} Create one in Admin.{% else %} Ask your administrator to set one up.{% endif %}

{% endif %} {% endblock %}