19 lines
710 B
HTML
19 lines
710 B
HTML
<%namespace name='static' file='../../static_content.html'/>
|
|
<%
|
|
import json
|
|
%>
|
|
|
|
## js templates
|
|
<script id="metadata-editor-tpl" type="text/template">
|
|
<%static:include path="js/metadata-editor.underscore" />
|
|
</script>
|
|
|
|
% for template_name in ["metadata-number-entry", "metadata-string-entry", "metadata-option-entry", "metadata-list-entry", "metadata-dict-entry", "metadata-file-uploader-entry", "metadata-file-uploader-item"]:
|
|
<script id="${template_name}" type="text/template">
|
|
<%static:include path="js/${template_name}.underscore" />
|
|
</script>
|
|
% endfor
|
|
|
|
<div class="wrapper-comp-settings metadata_edit" id="settings-tab" data-metadata='${json.dumps(editable_metadata_fields) | h}'/>
|
|
|