Skip to content

Commit

Permalink
Merge pull request #3435 from wildcatzita/group-org-members-table-mob…
Browse files Browse the repository at this point in the history
…ile-view-fix

Fix group, org member tables in mobile view
  • Loading branch information
amercader committed Feb 21, 2017
2 parents e9d58bb + 3ec395e commit e0cf535
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
9 changes: 3 additions & 6 deletions ckan/templates/group/members.html
Expand Up @@ -9,14 +9,11 @@
{% block primary_content_inner %}
<h3 class="page-heading">{{ _('{0} members'.format(c.members|length)) }}</h3>
<table class="table table-header table-hover table-bordered" id="member-table">
<col width="70" />
<col width="40" />
<col width="20" />
<thead>
<tr>
<th scope="col">{{ _('User') }}</th>
<th scope="col">{{ _('Role') }}</th>
<th scope="col"></th>
<th>{{ _('User') }}</th>
<th>{{ _('Role') }}</th>
<th></th>
</tr>
</thead>
<tbody>
Expand Down
9 changes: 3 additions & 6 deletions ckan/templates/organization/members.html
Expand Up @@ -12,14 +12,11 @@
{% block primary_content_inner %}
<h3 class="page-heading">{{ _('{0} members'.format(c.members|length)) }}</h3>
<table class="table table-header table-hover table-bordered">
<col width="70" />
<col width="40" />
<col width="20" />
<thead>
<tr>
<th scope="col">{{ _('User') }}</th>
<th scope="col">{{ _('Role') }}</th>
<th scope="col"></th>
<th>{{ _('User') }}</th>
<th>{{ _('Role') }}</th>
<th></th>
</tr>
</thead>
<tbody>
Expand Down

0 comments on commit e0cf535

Please sign in to comment.