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,9 @@
{{#if value}}
{{{value}}}
{{else}}
{{#if valueIsSet}}
<span class="none-value">{{translate 'None'}}</span>
{{else}}
<span class="loading-value"></span>
{{/if}}
{{/if}}

View File

@@ -0,0 +1,38 @@
<div class="attachment-upload">
<div class="clearfix attachment-control">
{{#unless uploadFromFileSystemDisabled}}
<div class="pull-left">
<label class="attach-file-label" title="{{translate 'Attach File'}}" tabindex="0">
<span class="btn btn-default btn-icon"><span class="fas fa-paperclip"></span></span>
<input
type="file"
class="file pull-right"
multiple
{{#if acceptAttribute}}accept="{{acceptAttribute}}"{{/if}}
tabindex="-1"
>
</label>
</div>
{{/unless}}
{{#if sourceList.length}}
<div class="pull-left dropdown">
<button class="btn btn-default btn-icon dropdown-toggle" type="button" data-toggle="dropdown">
<span class="fas fa-file"></span>
</button>
<ul class="dropdown-menu" role="menu">
{{#each sourceList}}
<li><a
role="button"
tabindex="0"
class="action"
data-action="insertFromSource"
data-name="{{./this}}"
>{{translate this category='insertFromSourceLabels' scope='Attachment'}}</a></li>
{{/each}}
</ul>
</div>
{{/if}}
</div>
<div class="attachments"></div>
</div>

View File

@@ -0,0 +1,3 @@
{{#if value}}
{{{value}}}
{{/if}}