mirror of
https://github.com/tiyn/container-critique.git
synced 2025-04-03 16:47:48 +02:00
templates: minor typos
This commit is contained in:
parent
aca6c40ace
commit
9f7bce2be0
@ -17,7 +17,7 @@
|
|||||||
<li>
|
<li>
|
||||||
{{ entry.item.name }}
|
{{ entry.item.name }}
|
||||||
<a href="{{ url_for('entry', ident=entry.id) }}">
|
<a href="{{ url_for('entry', ident=entry.id) }}">
|
||||||
{{ r_to_star(entry.rating) }} by username
|
{{ r_to_star(entry.rating) }} by {{ entry.user.name }}
|
||||||
</a>
|
</a>
|
||||||
</li><br>
|
</li><br>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="blog">
|
<div class="blog">
|
||||||
<h1>Index</h1><br>
|
<h1>Blog</h1><br>
|
||||||
{% for entry in entries %}
|
{% for entry in entries %}
|
||||||
<div class="entry">
|
<div class="entry">
|
||||||
<h1 id="{{ entry.id }}">
|
<h1 id="{{ entry.id }}">
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="archive">
|
<div class="archive">
|
||||||
<h1>User: {{ User }}</h1><br>
|
<h1>User: {{ name }}</h1><br>
|
||||||
{% set ns = namespace(last_year="") %}
|
{% set ns = namespace(last_year="") %}
|
||||||
{% for entry in entries %}
|
{% for entry in entries %}
|
||||||
{% if entry.item.date != ns.last_year %}
|
{% if entry.item.date != ns.last_year %}
|
||||||
@ -17,7 +17,7 @@
|
|||||||
<li>
|
<li>
|
||||||
{{ entry.item.name }}
|
{{ entry.item.name }}
|
||||||
<a href="{{ url_for('entry', ident=entry.id) }}">
|
<a href="{{ url_for('entry', ident=entry.id) }}">
|
||||||
{{ r_to_star(entry.rating) }} by username
|
{{ r_to_star(entry.rating) }} by {{ entry.user.name }}
|
||||||
</a>
|
</a>
|
||||||
</li><br>
|
</li><br>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="writing">
|
<div class="writing">
|
||||||
<h1>Sign In</h1>
|
<h1>Write Critique</h1>
|
||||||
<form action="" method="post" novalidate>
|
<form action="" method="post" novalidate>
|
||||||
{{ form.hidden_tag() }}
|
{{ form.hidden_tag() }}
|
||||||
<p>
|
<p>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user