Skip to content
Snippets Groups Projects
Commit d6789a03 authored by Patrick Jentsch's avatar Patrick Jentsch
Browse files

Remove Anonymous from cfr selection in follow link gen

parent 793de849
No related branches found
No related tags found
No related merge requests found
...@@ -192,7 +192,7 @@ ...@@ -192,7 +192,7 @@
<div class="input-field"> <div class="input-field">
<i class="material-icons prefix">badge</i> <i class="material-icons prefix">badge</i>
<select id="share-link-modal-corpus-follower-role-select"> <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> <option value="{{ cfr.name }}">{{ cfr.name }}</option>
{% endfor %} {% endfor %}
</select> </select>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment