2024-05-13 21:07:38 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Reference Editor</title>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<select id='references' onchange='retrieveReference(this)'>
|
|
|
|
<option value=''>-- Select Reference --</option>
|
2024-05-26 22:40:45 -04:00
|
|
|
<option value='new'>-- Insert New --</option>
|
2024-05-13 21:07:38 -04:00
|
|
|
<optgroup id='creeds' label='Creeds'>
|
|
|
|
{% for c in creeds %}
|
2024-05-26 22:40:45 -04:00
|
|
|
<option type='creed' value='{{ c.id }}'>{{ c.name }}</option>
|
2024-05-13 21:07:38 -04:00
|
|
|
{% endfor %}
|
|
|
|
</optgroup>
|
|
|
|
<optgroup id='belgic' label='Belgic Confession'>
|
|
|
|
{% for c in belgic %}
|
2024-05-26 22:40:45 -04:00
|
|
|
<option type='bc' value='{{ c.id }}'>{{ c.label }}</option>
|
2024-05-13 21:07:38 -04:00
|
|
|
{% endfor %}
|
|
|
|
</optgroup>
|
|
|
|
<optgroup id='heidelberg' label='Heidelberg Catechism'>
|
|
|
|
{% for c in heidelberg %}
|
2024-05-26 22:40:45 -04:00
|
|
|
<option type='hc' value='{{ c.id }}'>{{ c.label }}</option>
|
2024-05-13 21:07:38 -04:00
|
|
|
{% endfor %}
|
|
|
|
</optgroup>
|
|
|
|
<optgroup id='dort' label='Canons of Dort'>
|
|
|
|
{% for c in dort %}
|
2024-05-26 22:40:45 -04:00
|
|
|
<option type='cd' value='{{ c.id }}'>{{ c.label }}</option>
|
2024-05-13 21:07:38 -04:00
|
|
|
{% endfor %}
|
|
|
|
</optgroup>
|
|
|
|
<optgroup id='wcf' label='Westminster Confession of Faith'>
|
|
|
|
{% for c in wcf %}
|
2024-05-26 22:40:45 -04:00
|
|
|
<option type='wcf' value='{{ c.id }}'>{{ c.label }}</option>
|
2024-05-13 21:07:38 -04:00
|
|
|
{% endfor %}
|
|
|
|
</optgroup>
|
|
|
|
<optgroup id='wsc' label='Westminster Short Catechism'>
|
|
|
|
{% for c in wsc %}
|
2024-05-26 22:40:45 -04:00
|
|
|
<option type='wsc' value='{{ c.id }}'>{{ c.label }}</option>
|
2024-05-13 21:07:38 -04:00
|
|
|
{% endfor %}
|
|
|
|
</optgroup>
|
|
|
|
<optgroup id='wlc' label='Westminster Larger Catechism'>
|
|
|
|
{% for c in wlc %}
|
2024-05-26 22:40:45 -04:00
|
|
|
<option type='wlc' value='{{ c.id }}'>{{ c.label }}</option>
|
2024-05-13 21:07:38 -04:00
|
|
|
{% endfor %}
|
|
|
|
</optgroup>
|
2024-05-26 22:40:45 -04:00
|
|
|
<optgroup id='lbc' label='London Baptist Confession'>
|
|
|
|
{% for c in lbc %}
|
|
|
|
<option type='lbc' value='{{ c.id }}'>{{ c.label }}</option>
|
|
|
|
{% endfor %}
|
|
|
|
</optgroup>
|
|
|
|
</select>
|
|
|
|
<input type='text' name='name' id='refName' style='display:none;' />
|
2024-05-13 21:07:38 -04:00
|
|
|
<button id='save' name='save' onclick='saveReference()'>Save</button>
|
|
|
|
<a href='/index.php/home'>Back</a><br />
|
|
|
|
|
|
|
|
<textarea id='reference' name='reference' rows=45 cols=100></textarea>
|
|
|
|
<script src='/js/script.js'></script>
|
|
|
|
</body>
|
|
|
|
</html>
|