2016-09-12 15:34:33 +00:00
{% extends "core/base.jinja" %}
{% from 'core/macros.jinja' import user_profile_link %}
{% block title %}
{% trans counter_name = counter %} {{ counter_name }} activity {% endtrans %}
{% endblock %}
{% block content %}
<h3> {% trans counter_name = counter %} {{ counter_name }} activity {% endtrans %} </h3>
{% if counter .type == 'BAR' %}
2016-10-16 17:30:39 +00:00
<h4> {% trans %} Barmen list {% endtrans %} </h4>
2016-09-12 15:34:33 +00:00
<ul>
{% for b in counter .get_barmen_list ( ) %}
<li> {{ user_profile_link ( b ) }} </li>
{% endfor %}
</ul>
{% endif %}
2016-10-16 17:30:39 +00:00
2016-10-26 13:06:00 +00:00
<h5> {% trans %} Legend {% endtrans %} </h5>
2016-10-16 17:30:39 +00:00
<span style="color: green">✓</span> : {% trans %} counter is open, there's at least one barman connected {% endtrans %}
<br>
2016-10-26 13:06:00 +00:00
<span style="color: orange">?</span> : {% trans minutes = settings .SITH_COUNTER_MINUTE_INACTIVE %} counter is open but not active, the last sale was done at least {{ minutes }} minutes ago {% endtrans %}
2016-10-16 17:30:39 +00:00
<br>
<span style="color: red">✗</span> : {% trans %} counter is not open : no one is connected {% endtrans %}
2016-09-12 15:34:33 +00:00
{% endblock %}