mirror of
https://github.com/tiyn/container-critique.git
synced 2025-04-03 00:27:48 +02:00
28 lines
819 B
HTML
28 lines
819 B
HTML
{% extends "template.html" %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<div class="blog">
|
|
<h1>Blog</h1><br>
|
|
{% for entry in entries %}
|
|
<div class="entry">
|
|
<h1 id="{{ entry.id }}">
|
|
<a href="{{ url_for('entry', ident=entry.id) }}">
|
|
{{ entry.item.name }} ({{ entry.item.date }}) {{ r_to_star(entry.rating) }}
|
|
</a>
|
|
</h1>
|
|
<small>
|
|
rated {{ entry.rating }}/100 by
|
|
<a href="{{ url_for('user', name=entry.user.name) }}">
|
|
{{ entry.user.name }}
|
|
</a>
|
|
</small><br>
|
|
{% autoescape off %}
|
|
{{ entry.text }}
|
|
{% endautoescape %}
|
|
</div><br>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|