web2py.transcription/views/default/index.html

13 lines
213 B
HTML

{{extend 'layout.html'}}
<div class="row">
<div class="col-md-12">
<h1>Current Images</h1>
<ul>
{{for image in images:}}
{{=LI(A(image.title, _href=URL("show", args=image.id)))}}
{{pass}}
</ul>
</div>
</div>