Added (edited) marker to other pages

This commit is contained in:
Socks 2018-03-22 22:31:29 +00:00
parent 0d0391958e
commit 6665651f50
5 changed files with 8 additions and 5 deletions

View file

@ -6,7 +6,10 @@
<div class="row"> <div class="row">
{% for post in posts if not post.hidden %} {% for post in posts if not post.hidden %}
<div class="card" style="word-wrap: break-word; margin-bottom: 16px; width: 100%;"> <div class="card" style="word-wrap: break-word; margin-bottom: 16px; width: 100%;">
<div class="card-header"><b>{{ post.poster }}</b> at {{ post.timePosted.strftime('%Y-%m-%d %-H:%M') }} <span style="float: right"><a href="/reply/{{ post._id }}" class="btn btn-primary btn-sm"><i class="far fa-reply"></i></a> {% if logged_in == post.poster %} <a href="/delete/{{ post._id }}" class="btn btn-danger btn-sm"><i class="far fa-trash-alt"></i></a>{% endif %}</span></div> <div class="card-header">
<b>{{ post.poster }}</b> at {{ post.timePosted.strftime('%Y-%m-%d %-H:%M') }} {% if post.edited %}<i>(Edited)</i>{% endif %}
<span style="float: right"><a href="/reply/{{ post._id }}" class="btn btn-primary btn-sm"><i class="far fa-reply"></i></a> {% if logged_in == post.poster %} <a href="/delete/{{ post._id }}" class="btn btn-danger btn-sm"><i class="far fa-trash-alt"></i></a>{% endif %}</span>
</div>
<div class="card-body"> <div class="card-body">
{{ post.content }} {{ post.content }}
</div> </div>

View file

@ -6,7 +6,7 @@
<div class="row"> <div class="row">
{% for post in posts if not post.hidden %} {% for post in posts if not post.hidden %}
<div class="card" style="word-wrap: break-word; margin-bottom: 16px; width: 100%;"> <div class="card" style="word-wrap: break-word; margin-bottom: 16px; width: 100%;">
<div class="card-header"><b>{{ post.poster }}</b> at {{ post.timePosted.strftime('%Y-%m-%d %-H:%M') }} <div class="card-header"><b>{{ post.poster }}</b> at {{ post.timePosted.strftime('%Y-%m-%d %-H:%M') }} {% if post.edited %}<i>(Edited)</i>{% endif %}
<span style="float: right"> <span style="float: right">
{% if logged_in|lower in post.likes %} {% if logged_in|lower in post.likes %}
<form style="display: inline;" method="POST" action="/unlike/{{ post._id }}"><button type="submit" class="btn btn-danger btn-sm"><i class="fas fa-heart"></i> {{ post.likes|count }}</button></form> <form style="display: inline;" method="POST" action="/unlike/{{ post._id }}"><button type="submit" class="btn btn-danger btn-sm"><i class="fas fa-heart"></i> {{ post.likes|count }}</button></form>

View file

@ -12,7 +12,7 @@
{% endfor %} {% endfor %}
<div class="card" style="word-wrap: break-word; margin-bottom: 16px; width: 100%;"> <div class="card" style="word-wrap: break-word; margin-bottom: 16px; width: 100%;">
<div class="card-header">Replying to <b>{{ reply_to.poster }}</b> at {{ reply_to.timePosted.strftime('%Y-%m-%d %-H:%M') }}</div> <div class="card-header">Replying to <b>{{ reply_to.poster }}</b> at {{ reply_to.timePosted.strftime('%Y-%m-%d %-H:%M') }} {% if reply_to.edited %}<i>(Edited)</i>{% endif %}</div>
<div class="card-body"> <div class="card-body">
{{ reply_to.content }} {{ reply_to.content }}
</div> </div>

View file

@ -6,7 +6,7 @@
<div class="row"> <div class="row">
{% for post in posts if not post.hidden %} {% for post in posts if not post.hidden %}
<div class="card mx-xs-2 mb-3" style="word-wrap: break-word; width: 100%;"> <div class="card mx-xs-2 mb-3" style="word-wrap: break-word; width: 100%;">
<div class="card-header"><b>{{ post.poster }}</b> at {{ post.timePosted.strftime('%Y-%m-%d %-H:%M') }} <div class="card-header"><b>{{ post.poster }}</b> at {{ post.timePosted.strftime('%Y-%m-%d %-H:%M') }} {% if post.edited %}<i>(Edited)</i>{% endif %}
<span style="float: right"> <span style="float: right">
{% if logged_in|lower in post.likes %} {% if logged_in|lower in post.likes %}
<form style="display: inline;" method="POST" action="/unlike/{{ post._id }}"><button type="submit" class="btn btn-danger btn-sm"><i class="fas fa-heart"></i> {{ post.likes|count }}</button></form> <form style="display: inline;" method="POST" action="/unlike/{{ post._id }}"><button type="submit" class="btn btn-danger btn-sm"><i class="fas fa-heart"></i> {{ post.likes|count }}</button></form>

View file

@ -4,7 +4,7 @@
<div class="row"> <div class="row">
{% for post in posts %} {% for post in posts %}
<div class="card" style="word-wrap: brea-word; margin-bottom: 16px; width: 100%;"> <div class="card" style="word-wrap: brea-word; margin-bottom: 16px; width: 100%;">
<div class="card-header"><b>{{ post.poster }}</b> at {{ post.timePosted.strftime('%Y-%m-%d %-H:%M') }} <span style="float: right"><a href="/reply/{{ post._id }}" class="btn btn-primary btn-sm"><i class="far fa-reply"></i></a> {% if logged_in == post.poster %} <a href="/delete/{{ post._id }}" class="btn btn-danger btn-sm"><i class="far fa-trash-alt"></i></a>{% endif %}</span></div> <div class="card-header"><b>{{ post.poster }}</b> at {{ post.timePosted.strftime('%Y-%m-%d %-H:%M') }} {% if post.edited %}<i>(Edited)</i>{% endif %}<span style="float: right"><a href="/reply/{{ post._id }}" class="btn btn-primary btn-sm"><i class="far fa-reply"></i></a> {% if logged_in == post.poster %} <a href="/delete/{{ post._id }}" class="btn btn-danger btn-sm"><i class="far fa-trash-alt"></i></a>{% endif %}</span></div>
<div class="card-body"> <div class="card-body">
{{ post.content }} {{ post.content }}
</div> </div>