annotation tools for making the iterations publication (Manetta & Jara) - https://iterations.space/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.8 KiB
57 lines
1.8 KiB
{% extends "base.html" %}
|
|
|
|
{% block toolsextra %}
|
|
<a href="/text-scans/"><button>text-scans</button></a>
|
|
<!-- <a href="/text-specifics/"><button>text-specifics</button></a> -->
|
|
{% endblock %}
|
|
|
|
{% block page %}
|
|
<div class="info">
|
|
<p><strong class="handle">*3</strong>: conditions of possibility, units of measurement for succes, sharing how-to’s (how to co-exist, basically)</p>
|
|
<p><strong class="annotation">text</strong>: Which anecdotes/questions/vocabulary/glossary/tags engage with <strong class="handle">*3</strong>?</p>
|
|
</div>
|
|
<hr>
|
|
<form action="" method="GET">
|
|
<textarea cols="100" rows="15" name="marker"></textarea><br>
|
|
type:
|
|
<select name="marker-type">
|
|
<option value="anecdote">anecdote</option>
|
|
<option value="question">question</option>
|
|
<option value="glossary">glossary</option>
|
|
<option value="tag">tag</option>
|
|
</select>
|
|
<input class="submit" type="submit" value="submit"/>
|
|
<input class="reset" type="reset">
|
|
<hr>
|
|
<div id="markers">
|
|
<h2><strong class="annotation">textual markers</strong> gathered so far include:</h2>
|
|
<br>
|
|
<table>
|
|
<thead>
|
|
<th>marker</th>
|
|
<th>description</th>
|
|
<th>status</th>
|
|
</thead>
|
|
<tbody>
|
|
{% for x in db.keys() %}
|
|
<tr>
|
|
<td>
|
|
<div>({{ db[x]['type'] }}) {{ db[x]['marker'] }}</div>
|
|
</td>
|
|
<td>
|
|
<textarea cols="100" rows="5" name="description-{{x}}">{% if db[x]['description'] %}{{ db[x]['description'] }}{% endif %}</textarea>
|
|
</td>
|
|
<td>
|
|
<select name="status-{{x}}">
|
|
<option value="delete">delete</option>
|
|
<option value="unsure">unsure</option>
|
|
<option value="include" selected="selected">include</option>
|
|
</select>
|
|
</td>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
<input class="submit" type="submit" value="submit"/>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|