添加新接口
This commit is contained in:
parent
bf5059ba95
commit
3f454d5351
|
@ -125,7 +125,11 @@
|
|||
<label style="display: none"><input type="checkbox" checked name="groups" value="none" style="display: none"></label>
|
||||
<label><input type="checkbox" name="groups" value="all">all </label>
|
||||
{% for group_name in groups %}
|
||||
<label><input type="checkbox" name="groups" value="{{ group_name }}">{{ group_name }} </label>
|
||||
{% if group_name in notify['groups'] %}
|
||||
<label><input type="checkbox" checked name="groups" value="{{ group_name }}">{{ group_name }} </label>
|
||||
{% else %}
|
||||
<label><input type="checkbox" name="groups" value="{{ group_name }}">{{ group_name }} </label>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue