{% raw page.html %}
</div>
+ <hr>
+
<div class="block">
<a class="button is-primary is-fullwidth" href="{{ os.path.join(request.path, "_edit") }}">
<span class="icon-text">
</div>
<div class="block">
- <div class="level">
- <div class="level-left">
- {% if current_user %}
- {% if page.is_watched_by(current_user) %}
- <a class="level-item" href="{{ os.path.join(page.url, "_unwatch") }}">
- <i class="fas fa-star" title="{{ _("Stop watching this page") }}"></i>
- </a>
- {% else %}
- <a class="level-item" href="{{ os.path.join(page.url, "_watch") }}">
- <i class="far fa-star" title="{{ _("Watch this page") }}"></i>
- </a>
+ <small>
+ <div class="level">
+ <div class="level-left">
+ {% if current_user %}
+ {% if page.is_watched_by(current_user) %}
+ <a class="level-item" href="{{ os.path.join(page.url, "_unwatch") }}">
+ <i class="fas fa-star" title="{{ _("Stop watching this page") }}"></i>
+ </a>
+ {% else %}
+ <a class="level-item" href="{{ os.path.join(page.url, "_watch") }}">
+ <i class="far fa-star" title="{{ _("Watch this page") }}"></i>
+ </a>
+ {% end %}
{% end %}
- {% end %}
-
- <a class="level-item" href="{{ request.path }}?action=revisions">
- {{ _("Older Revisions") }}
- </a>
-
- <div class="level-item">
- {{ locale.format_date(page.timestamp) }}
- </div>
- {% if page.author %}
<a class="level-item" href="/users/{{ page.author.uid }}">
- {{ page.author }}
+ {{ _("Last changed by %(author)s, %(when)s") % {
+ "author" : page.author,
+ "when" : locale.format_date(page.timestamp, shorter=True),
+ } }}
</a>
- {% end %}
+
+ <a class="level-item" href="{{ request.path }}?action=revisions">
+ {{ _("View Older Revisions") }}
+ </a>
+ </div>
</div>
- </div>
+ </small>
</div>
</div>
</div>