style fix

This commit is contained in:
Yuri Kuznetsov
2023-09-21 14:24:17 +03:00
parent f75d0562ba
commit 5e3a4c12d7
@@ -1,23 +1,25 @@
{{#if fieldDataList.length}}
<table class="table table-bordered-inside">
{{#if editAccess}}
<tr>
<th width="20"><input type="checkbox" class="checkbox-all form-checkbox"></th>
<th width="30%"></th>
<th></th>
</tr>
{{/if}}
{{#each fieldDataList}}
<tr>
{{#if ../editAccess}}<td>{{#if editAccess}}
<input type="checkbox" class="checkbox form-checkbox" data-name="{{name}}">{{/if}}</td>{{/if}}
<td width="30%">{{translate name category='fields' scope=../scope}}</td>
<td>
<div class="field" data-name="{{name}}">{{{var key ../this}}}</div>
</td>
</tr>
{{/each}}
</table>
<div class="panel">
<table class="table table-bordered-inside">
{{#if editAccess}}
<tr>
<th width="20"><input type="checkbox" class="checkbox-all form-checkbox"></th>
<th width="30%"></th>
<th></th>
</tr>
{{/if}}
{{#each fieldDataList}}
<tr>
{{#if ../editAccess}}<td>{{#if editAccess}}
<input type="checkbox" class="checkbox form-checkbox" data-name="{{name}}">{{/if}}</td>{{/if}}
<td width="30%">{{translate name category='fields' scope=../scope}}</td>
<td>
<div class="field" data-name="{{name}}">{{{var key ../this}}}</div>
</td>
</tr>
{{/each}}
</table>
</div>
{{else}}
{{translate 'No Data'}}
{{/if}}