19 lines
355 B
HTML
19 lines
355 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block main %}
|
|
<table>
|
|
<tbody>
|
|
{% for lens in lenses %}
|
|
<tr>
|
|
<td>
|
|
<a
|
|
href="{{ settings.root_path }}/d/{{ base_id.simple() }}/r/{{ class_oid }}/l/{{ lens.id.simple() }}"
|
|
>
|
|
{{ lens.name }}
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|