mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-09 19:40:19 +00:00
counter inactive state with settings variable, traduction file problem fixed
This commit is contained in:
@ -223,12 +223,9 @@ class Counter(models.Model):
|
||||
|
||||
def is_inactive(self):
|
||||
"""
|
||||
Returns True if the counter self is inactive from 10 minutes, else False
|
||||
Returns True if the counter self is inactive from SITH_COUNTER_MINUTE_INACTIVE's value minutes, else False
|
||||
"""
|
||||
if (self.is_open()):
|
||||
return ((timezone.now() - self.permanencies.model.objects.order_by('-activity').first().activity) > datetime.timedelta(minutes=10))
|
||||
else:
|
||||
return False
|
||||
return self.is_open() and ((timezone.now() - self.permanencies.order_by('-activity').first().activity) > datetime.timedelta(minutes=settings.SITH_COUNTER_MINUTE_INACTIVE))
|
||||
|
||||
def barman_list(self):
|
||||
"""
|
||||
|
@ -16,11 +16,10 @@
|
||||
</ul>
|
||||
{% endif %}
|
||||
|
||||
|
||||
<h5>{% trans %}Legend{% endtrans %}</h5>
|
||||
<h5>{% trans %}Legend{% endtrans %}</h5>
|
||||
<span style="color: green">✓</span> : {% trans %}counter is open, there's at least one barman connected{% endtrans %}
|
||||
<br>
|
||||
<span style="color: orange">?</span> : {% trans %}counter is open but not active, the last sale was done at least 10 minutes ago {% endtrans %}
|
||||
<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 %}
|
||||
<br>
|
||||
<span style="color: red">✗</span> : {% trans %}counter is not open : no one is connected{% endtrans %}
|
||||
{% endblock %}
|
||||
|
Reference in New Issue
Block a user