Remove Anonymous from cfr selection in follow link gen

This commit is contained in:
Patrick Jentsch 2023-06-06 13:47:24 +02:00
parent 793de849ef
commit d6789a0388

View File

@ -192,7 +192,7 @@
<div class="input-field">
<i class="material-icons prefix">badge</i>
<select id="share-link-modal-corpus-follower-role-select">
{% for cfr in cfrs %}
{% for cfr in cfrs if cfr.name != 'Anonymous' %}
<option value="{{ cfr.name }}">{{ cfr.name }}</option>
{% endfor %}
</select>