Skip to content

Commit

Permalink
fix: use correct info order
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Clemens committed Jul 1, 2018
1 parent 425a1c3 commit 1af3a22
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion webserver/web/templates/paste/edit.html.tera
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ Edit untitled paste
{% set file_count = paste.files | length %}
<div class="right paste info">
<span>{{ paste.visibility }}</span>
<span class="timestamp" data-timestamp="{{ paste.created_at }}"></span>
<span>{{ paste.files | length }} {% if file_count == 1 %}file{% else %}files{% endif %}</span>
<span class="timestamp" data-timestamp="{{ paste.created_at }}"></span>
</div>
<div class="left tabs">
<ul>
Expand Down
2 changes: 1 addition & 1 deletion webserver/web/templates/paste/index.html.tera
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ untitled paste
{% set file_count = paste.files | length %}
<div class="right paste info">
<span>{{ paste.visibility }}</span>
<span class="timestamp" data-timestamp="{{ paste.created_at }}"></span>
<span>{{ paste.files | length }} {% if file_count == 1 %}file{% else %}files{% endif %}</span>
<span class="timestamp" data-timestamp="{{ paste.created_at }}"></span>
</div>
<div class="left tabs">
<ul>
Expand Down
2 changes: 1 addition & 1 deletion webserver/web/templates/paste/revisions.html.tera
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ untitled paste
{% set file_count = paste.files | length %}
<div class="right paste info">
<span>{{ paste.visibility }}</span>
<span class="timestamp" data-timestamp="{{ paste.created_at }}"></span>
<span>{{ paste.files | length }} {% if file_count == 1 %}file{% else %}files{% endif %}</span>
<span class="timestamp" data-timestamp="{{ paste.created_at }}"></span>
</div>
<div class="left tabs">
<ul>
Expand Down

0 comments on commit 1af3a22

Please sign in to comment.