Skip to content

Commit

Permalink
graphviewer: interesting nodes suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
thvitt committed Jul 22, 2020
1 parent 00a0b49 commit f2293d6
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/graphviewer/templates/form.html
Expand Up @@ -18,7 +18,6 @@
.flex-form {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
}
.vertical > .flex-form {
Expand Down Expand Up @@ -190,7 +189,7 @@
<legend>Zusätzliche Pfade</legend>
<p><input type="checkbox" name="abs_dates" id="abs_dates" {% if abs_dates %}checked{% endif %}> <label for="abs_dates">absolute Datierungen rechtfertigen</label></p>
<p><label for="extra">Pfade von/zu (falls verfügbar): </label><br/>
<input type="text" name="extra" id="extra" value="{{ extra }}" placeholder="A, 2 H" style="width: 100%"><br />
<input type="text" name="extra" id="extra" value="{{ extra }}" list="interesting-nodes" placeholder="A, 2 H" style="width: 100%"><br />
<input type="checkbox" name="paths_wo_timeline" id="paths_wo_timeline" {% if paths_wo_timeline %}checked{% endif %}> <label for="paths_wo_timeline">ohne Timeline</label>
</p>
</fieldset>
Expand All @@ -216,6 +215,11 @@
</fieldset>
</form>

<datalist id="interesting-nodes">
<option value="A, 2 H"></option>
<option value="1 H.5, J.1, S, 2 III H.1, H P1, A, H P63, 2 V H.2, C.1 4, C.1 12, 2 H"></option>
</datalist>

{% endblock %}

{%- block title -%}
Expand Down

0 comments on commit f2293d6

Please sign in to comment.