|
|
@@ -110,7 +110,7 @@
|
|
|
<table class="table table-bordered table-user-list">
|
|
|
<thead>
|
|
|
<tr>
|
|
|
- <th width="100px">#</th>
|
|
|
+ <th width="60px">#</th>
|
|
|
<th>{{ t('Name') }}</th>
|
|
|
<th>ユーザ一覧</th>
|
|
|
<th width="100px">作成日</th>
|
|
|
@@ -119,11 +119,12 @@
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
{% for sGroup in userGroups %}
|
|
|
+ {% set sGroupDetailPageUrl = '/admin/user-group-detail/' + sGroup.name %}
|
|
|
<tr>
|
|
|
<td>
|
|
|
<img src="{{ sGroup|picture }}" class="picture img-circle" />
|
|
|
</td>
|
|
|
- <td>{{ sGroup.name }}</td>
|
|
|
+ <td><a href="{{ sGroupDetailPageUrl }}">{{ sGroup.name }}</a></td>
|
|
|
<td><ul class="list-inline">
|
|
|
{% for relation in userGroupRelations.get(sGroup) %}
|
|
|
<li class="list-inline-item badge badge-primary">{{relation.relatedUser.username}}</li>
|
|
|
@@ -137,7 +138,7 @@
|
|
|
</button>
|
|
|
<ul class="dropdown-menu" role="menu">
|
|
|
<li>
|
|
|
- <a href="/admin/user-group-detail/{{sGroup.name}}">
|
|
|
+ <a href="{{ sGroupDetailPageUrl }}">
|
|
|
<i class="icon-fw icon-note"></i> 編集
|
|
|
</a>
|
|
|
</li>
|