page. Each WG/RG now gets a list with an initial set of rules to populate the list. Refine the community list management interface a bit to support the group lists better - group lists aren't connected to the usual track icons so need to be able to add/remove individual drafts. Change the "name contains" rule to support regular expressions to enable each group to have a default replacement for the previously implemented "related documents" search. Maintain a materialized view of the regexp-matched drafts with a call in the submit code to avoid having to scan all drafts/~1000 group rules all the time. - Legacy-Id: 10963
23 lines
1.4 KiB
HTML
23 lines
1.4 KiB
HTML
<ul class="list-inline pull-right" style="margin-top:1em;">
|
|
<li>
|
|
<label id="list-feeds">Atom feed:</label>
|
|
<div class="btn-group" role="group" aria-labelledby="list-feeds">
|
|
<a class="btn btn-default" title="Feed of all changes" href="{% if clist.group %}{% url "community_group_feed" clist.group.acronym %}{% else %}{% url "community_personal_feed" clist.user.username %}{% endif %}">All changes</a>
|
|
<a class="btn btn-default" title="Feed of only significant state changes" href="{% if clist.group %}{% url "community_group_feed" clist.group.acronym %}{% else %}{% url "community_personal_feed" clist.user.username %}{% endif %}?significant=1">Significant</a>
|
|
</div>
|
|
</li>
|
|
|
|
{% if clist.pk != None %}
|
|
<li><a class="btn btn-default" href="{% if clist.group %}{% url "community_group_subscription" clist.group.acronym %}{% else %}{% url "community_personal_subscription" clist.user.username %}{% endif %}">
|
|
<i class="glyphicon glyphicon-envelope"></i>
|
|
{% if subscribed %}
|
|
Change subscription
|
|
{% else %}
|
|
Subscribe to changes
|
|
{% endif %}
|
|
</a></li>
|
|
{% endif %}
|
|
|
|
<li><a class="btn btn-default" href="{% if clist.group %}{% url "community_group_csv" clist.group.acronym %}{% else %}{% url "community_personal_csv" clist.user.username %}{% endif %}"><i class="glyphicon glyphicon-list"></i> Export as CSV</a></li>
|
|
</ul>
|