32 lines
938 B
HTML
32 lines
938 B
HTML
<hgroup>
|
|
<h6>Pending logins</h6>
|
|
{% if not data.tokens["LOGIN"] %}
|
|
<p>No pending requests</p>
|
|
{% else %}
|
|
<p>
|
|
<ol>
|
|
{% for token, token_data in data.tokens["LOGIN"].items() %}
|
|
<li><b>{{ token_data.intention }}</b> on <small _="init js return new Date('{{ token_data.created }}').toLocaleString() end then put result into me">{{ token_data.created }}</small></li>
|
|
{% endfor %}
|
|
</ol>
|
|
</p>
|
|
{% endif %}
|
|
</hgroup>
|
|
|
|
<hr>
|
|
|
|
<hgroup>
|
|
<h6>Pending registrations</h6>
|
|
{% if not data.tokens["REGISTER"] %}
|
|
<p>No pending requests</p>
|
|
{% else %}
|
|
<p>
|
|
<ol>
|
|
{% for token, token_data in data.tokens["REGISTER"].items() %}
|
|
<li><b>{{ token_data.intention }}</b> on <small _="init js return new Date('{{ token_data.created }}').toLocaleString() end then put result into me">{{ token_data.created }}</small></li>
|
|
{% endfor %}
|
|
</ol>
|
|
</p>
|
|
{% endif %}
|
|
</hgroup>
|