27 lines
1.1 KiB
Smarty
27 lines
1.1 KiB
Smarty
<div class="attachment-upload">
|
|
<div class="attachment-button{{#if id}} hidden{{/if}}">
|
|
<div class="pull-left">
|
|
<label class="attach-file-label" title="{{translate 'Attach File'}}">
|
|
<span class="btn btn-default btn-icon"><span class="fas fa-paperclip"></span></span>
|
|
<input type="file" class="file pull-right" {{#if acceptAttribue}}accept="{{acceptAttribue}}"{{/if}}>
|
|
</label>
|
|
</div>
|
|
{{#unless id}}
|
|
{{#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 fa-sm"></span>
|
|
</button>
|
|
<ul class="dropdown-menu" role="menu">
|
|
{{#each sourceList}}
|
|
<li><a href="javascript:" class="action" data-action="insertFromSource" data-name="{{./this}}">{{translate this category='insertFromSourceLabels' scope='Attachment'}}</a></li>
|
|
{{/each}}
|
|
</ul>
|
|
</div>
|
|
{{/if}}
|
|
{{/unless}}
|
|
</div>
|
|
|
|
<div class="attachment"></div>
|
|
</div>
|