{% extends 'evictionsplit/base.html' %} {% load i18n %} {% load smooth_timedelta %} {% block details %}

{% translate "Eviction board" %}

{% for eviction in user_active_evictions %}

{{ eviction.name }}

{% csrf_token %} {% if eviction.is_standby %} {% else %} {% endif %}
{% csrf_token %} {% if eviction.is_doorstop %} {% else %} {% endif %}

{{ eviction.time_standby | smooth_timedelta }}

{{ eviction.time_doorstop | smooth_timedelta }}


{% empty %} {% url 'evictionsplit:list' as url %} {# Translators: Be careful to preserve the tag structure #} {% blocktranslate trimmed %}

You are in no active eviction at the moment

Go to here to join evictions

{% endblocktranslate %} {% endfor %} {% endblock %}