mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-01-22 23:16:53 +00:00
This commit is contained in:
parent
060bea89ae
commit
e48ea2dbe6
@ -9,12 +9,22 @@ class: mws-modal
|
|||||||
<form class="mws-anon-config-form" method="POST" action="/admin/post-anon-config">
|
<form class="mws-anon-config-form" method="POST" action="/admin/post-anon-config">
|
||||||
<div class="mws-modal-section">
|
<div class="mws-modal-section">
|
||||||
<$set name="isChecked" value={{{ [[$:/config/MultiWikiServer/AllowAnonymousReads]get[text]] }}}>
|
<$set name="isChecked" value={{{ [[$:/config/MultiWikiServer/AllowAnonymousReads]get[text]] }}}>
|
||||||
<input type="checkbox" name="allowReads" checked=<<isChecked>>/> Allow anonymous reads
|
<$list filter="[<isChecked>match[yes]]">
|
||||||
|
<input type="checkbox" name="allowReads" checked/> Allow anonymous reads
|
||||||
|
</$list>
|
||||||
|
<$list filter="[<isChecked>!match[yes]]">
|
||||||
|
<input type="checkbox" name="allowReads"/> Allow anonymous reads
|
||||||
|
</$list>
|
||||||
</$set>
|
</$set>
|
||||||
</div>
|
</div>
|
||||||
<div class="mws-modal-section">
|
<div class="mws-modal-section">
|
||||||
<$set name="isChecked" value={{{ [[$:/config/MultiWikiServer/AllowAnonymousWrites]get[text]] }}}>
|
<$set name="isChecked" value={{{ [[$:/config/MultiWikiServer/AllowAnonymousWrites]get[text]] }}}>
|
||||||
<input type="checkbox" name="allowWrites" checked=<<isChecked>>/> Allow anonymous writes
|
<$list filter="[<isChecked>match[yes]]">
|
||||||
|
<input type="checkbox" name="allowWrites" checked/> Allow anonymous writes
|
||||||
|
</$list>
|
||||||
|
<$list filter="[<isChecked>!match[yes]]">
|
||||||
|
<input type="checkbox" name="allowWrites"/> Allow anonymous writes
|
||||||
|
</$list>
|
||||||
</$set>
|
</$set>
|
||||||
</div>
|
</div>
|
||||||
<div class="mws-modal-buttons">
|
<div class="mws-modal-buttons">
|
||||||
|
Loading…
Reference in New Issue
Block a user