copyedit on settings form. widened page

This commit is contained in:
codl 2020-09-18 00:17:00 +02:00
parent 48b9ec7796
commit d2c3d95b1e
No known key found for this signature in database
GPG Key ID: 6CD7C8891ED1233A
2 changed files with 10 additions and 10 deletions

View File

@ -9,7 +9,7 @@ body {
} }
body > section, body > header, body > footer { body > section, body > header, body > footer {
max-width: 40rem; max-width: 45rem;
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
} }

View File

@ -68,18 +68,18 @@
{{interval_input(g.viewer.account, 'policy_keep_younger', scales)}} {{interval_input(g.viewer.account, 'policy_keep_younger', scales)}}
old and are not one of your old and are not one of your
<input type=number name=policy_keep_latest min=0 step=1 style='max-width:8ch' value={{g.viewer.account.policy_keep_latest}}> <input type=number name=policy_keep_latest min=0 step=1 style='max-width:8ch' value={{g.viewer.account.policy_keep_latest}}>
most recent posts will expire most recent posts will be considered for deletion
</p> </p>
<p>Keep <p>…unless you
<span class="radiostrip"> <span class="radiostrip">
<span class="choice"> <span class="choice">
<input type=radio name=policy_keep_favourites value=keeponly id=policy_keep_favourites_keeponly {{ "checked" if g.viewer.account.policy_keep_favourites == 'keeponly' }}> <input type=radio name=policy_keep_favourites value=keeponly id=policy_keep_favourites_keeponly {{ "checked" if g.viewer.account.policy_keep_favourites == 'keeponly' }}>
<label for=policy_keep_favourites_keeponly>favourited posts</label> <label for=policy_keep_favourites_keeponly>favourited them</label>
</span> </span>
<span class="choice"> <span class="choice">
<input type=radio name=policy_keep_favourites value=deleteonly id=policy_keep_favourites_deleteonly {{ "checked" if g.viewer.account.policy_keep_favourites == 'deleteonly' }}> <input type=radio name=policy_keep_favourites value=deleteonly id=policy_keep_favourites_deleteonly {{ "checked" if g.viewer.account.policy_keep_favourites == 'deleteonly' }}>
<label for=policy_keep_favourites_deleteonly>non-favourited posts</label> <label for=policy_keep_favourites_deleteonly>have not favourited them</label>
</span> </span>
<span class="choice"> <span class="choice">
@ -88,16 +88,16 @@
</span> </span>
</span> </span>
</p> </p>
<p>Keep <p>…or unless they
<span class="radiostrip"> <span class="radiostrip">
<span class="choice"> <span class="choice">
<input type=radio name=policy_keep_media value=keeponly id=policy_keep_media_keeponly {{ "checked" if g.viewer.account.policy_keep_media == 'keeponly' }}> <input type=radio name=policy_keep_media value=keeponly id=policy_keep_media_keeponly {{ "checked" if g.viewer.account.policy_keep_media == 'keeponly' }}>
<label for=policy_keep_media_keeponly>media posts</label> <label for=policy_keep_media_keeponly>have media</label>
</span> </span>
<span class="choice"> <span class="choice">
<input type=radio name=policy_keep_media value=deleteonly id=policy_keep_media_deleteonly {{ "checked" if g.viewer.account.policy_keep_media == 'deleteonly' }}> <input type=radio name=policy_keep_media value=deleteonly id=policy_keep_media_deleteonly {{ "checked" if g.viewer.account.policy_keep_media == 'deleteonly' }}>
<label for=policy_keep_media_deleteonly>non-media posts</label> <label for=policy_keep_media_deleteonly>do not have media</label>
</span> </span>
<span class="choice"> <span class="choice">
@ -106,7 +106,7 @@
</span> </span>
</p> </p>
{% if g.viewer.account.service == 'mastodon' %} {% if g.viewer.account.service == 'mastodon' %}
<p>Keep direct messages <p>Keep direct messages:
<span class="radiostrip"> <span class="radiostrip">
<span class="choice"> <span class="choice">
<input type=radio name=policy_keep_direct value=true id=policy_keep_direct_true {{ "checked" if g.viewer.account.policy_keep_direct }}> <input type=radio name=policy_keep_direct value=true id=policy_keep_direct_true {{ "checked" if g.viewer.account.policy_keep_direct }}>
@ -122,7 +122,7 @@
{% endif %} {% endif %}
<p>Every <p>Every
{{interval_input(g.viewer.account, 'policy_delete_every', scales)}}, {{interval_input(g.viewer.account, 'policy_delete_every', scales)}},
one expired post will be picked at random and deleted. one post matching these rules will be picked at random and deleted.
</p> </p>
<input type=submit value='Save settings'> <input type=submit value='Save settings'>
<input type='hidden' name='csrf-token' value='{{g.viewer.csrf_token}}'> <input type='hidden' name='csrf-token' value='{{g.viewer.csrf_token}}'>