Files
web2py.transcription/views/default/index.html
T
2021-10-08 09:44:50 +02:00

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>