Final tweaks to the app members table

This commit is contained in:
leigh-mil 2019-10-21 15:01:04 -04:00
parent 750ea6568b
commit 176b9b4e25
3 changed files with 20 additions and 24 deletions

View File

@ -242,16 +242,8 @@
padding-bottom: 2rem;
table {
thead,
tbody {
tr {
th,
td {
&:last-child {
border-left: none;
}
}
}
.form-row {
margin: 0;
}
}
}

View File

@ -52,6 +52,7 @@ table.atat-table {
border: 1px solid $color-gray-lighter;
display: table-cell;
white-space: nowrap;
vertical-align: top;
&:first-child {
border-left: none;

View File

@ -118,7 +118,6 @@
<th>Member</th>
<th>Application Permissions</th>
<th>Environment Access</th>
<th></th>
</tr>
</thead>
<tbody>
@ -143,19 +142,23 @@
{% endfor %}
</td>
<td>
{% for env in member.environment_roles %}
{{ env.environment_name }}<br>
{% endfor %}
</td>
<td>
{% if member.role_status == 'pending' -%}
{% set revoke_invite_modal = "revoke_invite_{}".format(member.role_id) %}
{% set resend_invite_modal = "resend_invite-{}".format(member.role_id) %}
<a v-on:click='openModal("{{ resend_invite_modal }}")'>Resend Invite</a><br>
{% if user_can(permissions.DELETE_APPLICATION_MEMBER) -%}
<a v-on:click='openModal("{{ revoke_invite_modal }}")'>{{ 'invites.revoke' | translate }}</a>
{%- endif %}
{%- endif %}
<div class="form-row">
<div class="form-col form-col--two-thirds">
{% for env in member.environment_roles %}
{{ env.environment_name }}<br>
{% endfor %}
</div>
<div class="form-col form-col--one-third">
{% if member.role_status == 'pending' -%}
{% set revoke_invite_modal = "revoke_invite_{}".format(member.role_id) %}
{% set resend_invite_modal = "resend_invite-{}".format(member.role_id) %}
<a v-on:click='openModal("{{ resend_invite_modal }}")'>Resend Invite</a><br>
{% if user_can_delete_app_member -%}
<a v-on:click='openModal("{{ revoke_invite_modal }}")'>{{ 'invites.revoke' | translate }}</a>
{%- endif %}
{%- endif %}
</div>
</div>
</td>
</tr>
{% endfor %}