web2py.transcription/views/default/index.html

13 lines
213 B
HTML
Raw Normal View History

2021-10-01 10:29:16 +02:00
{{extend 'layout.html'}}
<div class="row">
<div class="col-md-12">
2021-10-08 09:44:50 +02:00
<h1>Current Images</h1>
<ul>
{{for image in images:}}
{{=LI(A(image.title, _href=URL("show", args=image.id)))}}
{{pass}}
</ul>
2021-10-01 10:29:16 +02:00
</div>
</div>