mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
feat: allow users to hide deleted comments
Closes: #435 Signed-off-by: Leonidas Spyropoulos <artafinde@archlinux.org>
This commit is contained in:
parent
174af5f025
commit
6ede837b4f
9 changed files with 132 additions and 5 deletions
|
@ -182,7 +182,7 @@
|
|||
maxlength="50" name="K" value="{{ pgp }}">
|
||||
</p>
|
||||
|
||||
<!-- Homepage -->
|
||||
<!-- Language -->
|
||||
<p>
|
||||
<label for="id_language">
|
||||
{% trans %}Language{% endtrans %}:
|
||||
|
@ -202,10 +202,10 @@
|
|||
</select>
|
||||
</p>
|
||||
|
||||
<!-- Homepage -->
|
||||
<!-- Timezone -->
|
||||
<p>
|
||||
<label for="id_timezone">
|
||||
{% trans %}Timezone{% endtrans %}
|
||||
{% trans %}Timezone{% endtrans %}:
|
||||
</label>
|
||||
|
||||
<select id="id_timezone" name="TZ">
|
||||
|
@ -219,6 +219,19 @@
|
|||
</select>
|
||||
</p>
|
||||
|
||||
<!-- Hide Deleted Comments -->
|
||||
<p>
|
||||
<label for="id_hidedeletedcomments">
|
||||
{% trans %}Hide deleted comments{% endtrans %}:
|
||||
</label>
|
||||
|
||||
<input id="id_hidedeletedcomments" type="checkbox" name="HDC"
|
||||
{% if hdc %}
|
||||
checked="checked"
|
||||
{% endif %}
|
||||
>
|
||||
</p>
|
||||
|
||||
</fieldset>
|
||||
|
||||
{% if form_type == "UpdateAccount" %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue