50 lines
1.8 KiB
HTML
50 lines
1.8 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block main %}
|
|
<script type="module" src="{{ settings.root_path }}/js_dist/cells.mjs"></script>
|
|
<script type="module" src="{{ settings.root_path }}/js_dist/lens-controls.mjs"></script>
|
|
<script type="module" src="{{ settings.root_path }}/js_dist/viewer-components.mjs"></script>
|
|
<script type="module" src="{{ settings.root_path }}/js_dist/viewer-controller.mjs"></script>
|
|
<script type="module" src="{{ settings.root_path }}/glm_dist/field_adder.mjs"></script>
|
|
<link rel="stylesheet" href="{{ settings.root_path }}/viewer.css">
|
|
<table class="viewer">
|
|
<thead>
|
|
<tr>
|
|
{% for field in fields %}
|
|
<th width="{{ field.width_px }}">
|
|
<div class="padded-cell">{{ field.label.clone().unwrap_or(field.name.clone()) }}</div>
|
|
</th>
|
|
{% endfor %}
|
|
<th class="column-adder">
|
|
<field-adder root-path="{{ settings.root_path }}" columns="{{ all_columns | json }}"></field-adder>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for row in rows %}
|
|
<tr data-pkey="{{ row.pkeys | json }}">
|
|
{% for field in fields %}
|
|
<td>
|
|
{% match field.get_value_encodable(row.data) %}
|
|
{% when Ok with (encodable) %}
|
|
<{{ field.webc_tag() | safe }}
|
|
{% for (k, v) in field.webc_custom_attrs() %}
|
|
{{ k }}="{{ v }}"
|
|
{% endfor %}
|
|
column="{{ field.name }}"
|
|
value="{{ encodable | json }}"
|
|
class="cell"
|
|
>
|
|
{{ field.render(encodable) | safe }}
|
|
</{{ field.webc_tag() | safe }}
|
|
{% when Err with (err) %}
|
|
<span class="pg-value-error">{{ err }}</span>
|
|
{% endmatch %}
|
|
</td>
|
|
{% endfor %}
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
<lens-controls selections="{{ selections_json }}"></lens-controls>
|
|
{% endblock %}
|