You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
704 B
HTML
30 lines
704 B
HTML
{% extends "base.html" %}
|
|
|
|
|
|
{% block head %}
|
|
<link
|
|
rel="stylesheet"
|
|
href="{{url_for('static', filename='css/annotation-compass/annotation-compass.css')}}"
|
|
/>
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="cards">
|
|
{% for image, thumb in images %}
|
|
<figure class="card-image">
|
|
<img class='thumb' src="{{url_for('static', filename='uploads/annotation-compass/' + thumb)}}" />
|
|
<a href="annotate/{{image}}/">{{image}}</a>
|
|
</figure>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<h2>Upload new File</h2>
|
|
<form method=post enctype=multipart/form-data>
|
|
<input type=file name=file>
|
|
<input type=submit value=Upload>
|
|
<textarea name=description ></textarea>
|
|
</form>
|
|
|
|
{% endblock %} |