mirror of
https://github.com/tiyn/container-critique.git
synced 2025-04-03 00:27:48 +02:00
30 lines
842 B
HTML
30 lines
842 B
HTML
{% extends "template.html" %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<div class="archive">
|
|
<h1>User: {{ name }}</h1><br>
|
|
{% set ns = namespace(last_year="") %}
|
|
{% for entry in entries %}
|
|
{% if entry.item.date != ns.last_year %}
|
|
{% if ns.last_year != "" %}
|
|
</ul>
|
|
{% endif %}
|
|
<h2> {{ entry.item.date }} </h2>
|
|
<ul>
|
|
{% endif %}
|
|
{% set ns.last_year = entry.item.date %}
|
|
<li>
|
|
{{ entry.item.name }}
|
|
<a href="{{ url_for('entry', ident=entry.id) }}">
|
|
{{ r_to_star(entry.rating) }} by {{ entry.user.name }}
|
|
</a>
|
|
</li><br>
|
|
{% endfor %}
|
|
{% autoescape off %}
|
|
{{ content_string }}
|
|
{% endautoescape %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|