blob: 6c5658f5164626bde234e54ac6aafa83a3dab651 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{#
Params
selected_form Form fragment to include
#}
<aside id="aside">
<h3>Read operations</h3>
<ul>
{% with href="/find", text="Find" %}
<li>{% include "frag_aside_link.html.j2" %}</li>
{% endwith %}
{% with href="/range", text="Range" %}
<li>{% include "frag_aside_link.html.j2" %}</li>
{% endwith %}
</ul>
<h3>Write operations</h3>
<ul>
{% with href="/upsert", text="Upsert" %}
<li>{% include "frag_aside_link.html.j2" %}</li>
{% endwith %}
{% with href="/delete", text="Delete" %}
<li>{% include "frag_aside_link.html.j2" %}</li>
{% endwith %}
</ul>
{% include selected_form %}
</aside>
|