Initial commit

This commit is contained in:
root
2026-01-19 17:44:46 +01:00
commit 823af8b11d
8721 changed files with 1130846 additions and 0 deletions

View File

@@ -0,0 +1 @@
<div class="record no-side-margin">{{{record}}}</div>

View File

@@ -0,0 +1,25 @@
{{#if fieldDataList.length}}
<div class="panel">
<table class="table table-bordered-inside">
{{#if editAccess}}
<tr>
<th style="width: 20px"><input type="checkbox" class="checkbox-all form-checkbox"></th>
<th style="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 style="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}}