{% extends "public_base.html" %} {% block title %}{{ BRAND_NAME }} · Feedback{% endblock %} {% block main %}
{% if ok %}

{% if vote == 'up' %}Thanks for the thumbs up.{% else %}Thanks for the thumbs down.{% endif %}

Your vote on this strategic log is recorded. {% if counts %} Current tally: {{ counts.up }} 👍 ยท {{ counts.down }} 👎. {% endif %}

Open the dashboard

{% else %}

Couldn’t record that vote

{{ message or "Something went wrong; please try again from the dashboard." }}

Open the dashboard

{% endif %}
{% endblock %}