stash visibility
This commit is contained in:
parent
23164af04f
commit
1853577ff5
26 changed files with 276 additions and 39 deletions
|
|
@ -35,8 +35,9 @@
|
|||
<table class="table table-striped" v-if="layout === 'table'">
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="width:40%;">Name</th>
|
||||
<th style="width:25%">Availability Policy</th>
|
||||
<th style="width:35%;">Name</th>
|
||||
<th style="width:20%">Availability Policy</th>
|
||||
<th style="width:20%">Visibility Policy</th>
|
||||
<th class="d-none d-md-table-cell" style="width:25%">Amount</th>
|
||||
<th>Actions</th>
|
||||
</tr>
|
||||
|
|
@ -49,6 +50,9 @@
|
|||
<td class="d-none d-md-table-cell">
|
||||
<span class="badge bg-secondary text-white">{{ item.availability_policy }}</span>
|
||||
</td>
|
||||
<td class="d-none d-md-table-cell">
|
||||
<span class="badge bg-secondary text-white">{{ item.visibility_policy }}</span>
|
||||
</td>
|
||||
<td class="d-none d-md-table-cell">{{ item.owned_quantity }}</td>
|
||||
<td class="table-action">
|
||||
<router-link v-if="canEdit" :to="`${itemRoute(item)}/edit`">
|
||||
|
|
@ -84,6 +88,7 @@
|
|||
</router-link></h5>
|
||||
<div class="card-text text-black-50">
|
||||
<span class="badge bg-secondary text-white">{{ item.availability_policy }}</span>
|
||||
<span class="badge bg-secondary text-white">{{ item.visibility_policy }}</span>
|
||||
<span class="float-right">{{ item.owned_quantity }}</span>
|
||||
</div>
|
||||
<div class="btn-group">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue