Slight linting.

master
voussoir 2022-08-14 13:50:32 -07:00
parent 306655ec8b
commit bdf2ba6334
No known key found for this signature in database
GPG Key ID: 5F7554F8C26DACCB
1 changed files with 3 additions and 4 deletions

View File

@ -178,9 +178,8 @@
File info File info
</h4> </h4>
<ul id="metadata"> <ul id="metadata">
{% set author = photo.author %} {% if photo.author is not none %}
{% if author is not none %} <li>Author: <a href="/userid/{{photo.author.id}}">{{photo.author.display_name}}</a></li>
<li>Author: <a href="/userid/{{author.id}}">{{author.display_name}}</a></li>
{% endif %} {% endif %}
{% if photo.width and photo.height %} {% if photo.width and photo.height %}
<li title="{{(photo.area / 1000000)|round(2)}} mpx">Dimensions: {{photo.width}}&times;{{photo.height}} px</li> <li title="{{(photo.area / 1000000)|round(2)}} mpx">Dimensions: {{photo.width}}&times;{{photo.height}} px</li>
@ -189,7 +188,7 @@
<li>Size: {{photo.bytes|bytestring}}</li> <li>Size: {{photo.bytes|bytestring}}</li>
{% if photo.duration %} {% if photo.duration %}
<li>Duration: {{photo.duration_string}}</li> <li>Duration: {{photo.duration_string}}</li>
<li>Overall Bitrate: {{photo.bitrate|int}} kbps</li> <li>Overall bitrate: {{photo.bitrate|int}} kbps</li>
{% endif %} {% endif %}
<li>Created {{photo.created|timestamp_to_naturaldate}}</li> <li>Created {{photo.created|timestamp_to_naturaldate}}</li>
<li><button id="refresh_metadata_button" class="green_button button_with_spinner" onclick="return refresh_metadata_form();">Refresh metadata</button></li> <li><button id="refresh_metadata_button" class="green_button button_with_spinner" onclick="return refresh_metadata_form();">Refresh metadata</button></li>