show icon for list

This commit is contained in:
Girish Ramakrishnan
2020-04-18 17:39:13 -07:00
parent a95e8633cd
commit c2b80d7aba

View File

@@ -365,6 +365,7 @@
<table class="table table-hover">
<thead>
<tr>
<th style="width: 0.5%;"></th>
<th>Name</th>
<th>List Members</th>
<th class="text-right">Action</th>
@@ -372,6 +373,10 @@
</thead>
<tbody>
<tr ng-repeat="list in mailinglists.mailinglists | filter:mailinglists.search | orderBy:'name'">
<td>
<i class="fas fa-door-closed" ng-show="list.membersOnly" uib-tooltip="Posting restricted to members only" tooltip-class="long nowrap"></i>
<i class="fas fa-door-open" ng-show="!list.membersOnly" uib-tooltip="Posting allowed by non-members" tooltip-class="long nowrap"></i>
</td>
<td class="hand" ng-click="mailinglists.edit.show(list)">
{{ list.name }}
</td>