Files
photoassistant/templates/photos.html

28 lines
1010 B
HTML

{% extends "base.html" %} {% block main_content %}
<div class="container">
<h3 class="offset-lg-2">{{page_title}} -- {{view_path}}</h3>
<div class="row">
<table class="table table table-sm col-xl-12">
<thead><tr class="thead-light"><th>Name</th><th>Size (MB)</th><th>Hash</th></tr></thead><tbody>
{% for obj in file_list %}
<tr><td>
{% if obj.type=="Directory" %}
<i class="fas fa-folder"></i>
{% elif obj.type=="Image" %}
<i class="fas fa-file-image"></i>
{% elif obj.type=="Video" %}
<i class="fas fa-file-video"></i>
{% else %}
<i class="fas fa-question-circle"></i>
{% endif %}
&nbsp;{{obj.name}}
{% if obj.type=="Image" %}
<img width="64" height="64" src="data:image/jpeg;base64,{{obj.thumbnail}}"></img>
{% endif %}
</td></td><td>{{obj.size_MB}}</td><td>{{obj.hash}}</tr>
{% endfor %}
</tbody></table>
</div class="row">
</div class="container">
{% endblock main_content %}