alpha
Login
or
Join now
microcosm.blue
/
microcosm-rs
Star
0
Fork
3
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Constellation, Spacedust, Slingshot, UFOs: atproto crates and services for microcosm
Star
0
Fork
3
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix reverse checkbox on try-it form
author
phil
date
5 months ago
(Jan 23, 2026, 9:16 PM -0500)
commit
c7750d66
c7750d66cafcf3d59d11acf9e0fcc0d1ef76b404
parent
6ee3a606
6ee3a606f325be23d2e014ba9e0b3bed460f5ebc
+2
-1
1 changed file
Expand all
Collapse all
Unified
Split
constellation
templates
try-it-macros.html.j2
+2
-1
constellation/templates/try-it-macros.html.j2
Reviewed
···
7
7
&did= <input type="text" name="did" value="{{ did }}" placeholder="did:plc:..." />{% endif %}{% endfor %}
8
8
<span id="did-placeholder"></span> <button id="add-did">+ did filter</button>
9
9
&limit= <input type="number" name="limit" value="{{ limit }}" max="100" placeholder="100" />
10
10
-
&reverse= <input type="checkbox" name="reverse" value="true" checked="false"><button type="submit">get links</button></pre>
10
10
+
&reverse= <input type="checkbox" name="reverse" value="true" {% if reverse %}checked{% endif %}>
11
11
+
<button type="submit">get links</button></pre>
11
12
</form>
12
13
<script>
13
14
const addDidButton = document.getElementById('add-did');