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 list.length}}
<select data-name="{{name}}" class="form-control main-element">
{{#each list}}
<option value="{{./this}}"{{#ifEqual ../value this}} selected{{/ifEqual}}>{{./this}}</option>
{{/each}}
</select>
{{else}}
{{{noSmtpMessage}}}
{{/if}}

View File

@@ -0,0 +1 @@
<button class="btn btn-default" data-action="createEvent">{{translate 'Create Meeting' scope='Meeting'}}</button>

View File

@@ -0,0 +1,6 @@
{{#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,30 @@
<div class="link-container list-group"></div>
{{#if hasSelectAddress}}
<div class="input-group">
<input
class="form-control"
type="email"
autocomplete="espo-{{name}}"
spellcheck="false"
maxlength="{{maxLength}}"
>
<div class="input-group-btn">
<button
data-action="selectAddress"
class="btn btn-default btn-icon"
type="button"
tabindex="-1"
title="{{translate 'Select'}}"
><i class="fas fa-angle-up"></i></button>
</div>
</div>
{{else}}
<input
class="form-control"
type="email"
autocomplete="espo-{{name}}"
spellcheck="false"
maxlength="{{maxLength}}"
title="{{translate 'Select'}}"
>
{{/if}}

View File

@@ -0,0 +1 @@
{{nameValue}}

View File

@@ -0,0 +1,11 @@
{{#if value~}}
<a
role="button"
tabindex="0"
data-action="show"
class="text-soft"
><span
class="fas fa-paperclip{{#if isSmall}} small{{/if}}"
title="{{translate 'View Attachments' scope='Email'}}"
></span></a>
{{~/if~}}

View File

@@ -0,0 +1 @@
<span class="fas fa-envelope action text-muted" data-action="quickView" data-id="{{model.id}}" style="cursor: pointer; margin-left: -7px; top: 2px;" title="{{translate 'View'}}"></span>

View File

@@ -0,0 +1,7 @@
<span title="{{value}}">{{value}}</span>
<span class="list-icon-container"{{#unless isReplied}} style="display: none;"{{/unless}}>
<span
class="fas icon-is-replied fa-sm text-muted icon-flip-horizontal"
title="{{translate 'isReplied' category='fields' scope='Email'}}"
></span>
</span>

View File

@@ -0,0 +1,4 @@
<span class="list-icon-container pull-right"{{#unless isReplied}} style="visibility: hidden;"{{/unless}}>
<span class="fas icon-is-replied fa-sm text-muted icon-flip-horizontal" title="{{translate 'isReplied' category='fields' scope='Email'}}"></span>
</span>
<span title="{{value}}">{{value}}</span>

View File

@@ -0,0 +1,20 @@
<div class="input-group">
<input
class="main-element form-control"
type="text"
data-name="{{nameName}}"
value="{{nameValue}}"
autocomplete="espo-{{name}}"
spellcheck="false"
>
<span class="input-group-btn">
<button
data-action="selectLink"
class="btn btn-default btn-icon"
type="button"
tabindex="-1"
title="{{translate 'Select'}}"
><i class="fas fa-angle-up"></i></button>
</span>
</div>
<input type="hidden" data-name="{{idName}}" value="{{idValue}}">

View File

@@ -0,0 +1,31 @@
<span>
<span>
<a
href="#{{scope}}/view/{{model.id}}"
class="link {{#if style}}text-{{style}}{{/if}} {{#unless isRead}} text-bold {{/unless}}"
data-id="{{model.id}}"
title="{{value}}"
>{{value}}</a>
</span>
{{#if hasIcon}}
<span class="list-icon-container" data-icon-count="{{iconCount}}">
{{#if hasAttachment}}
<a
role="button"
tabindex="0"
data-action="showAttachments"
class="text-muted"
><span
class="fas fa-paperclip small"
title="{{translate 'hasAttachment' category='fields' scope='Email'}}"
></span></a>
{{/if}}
{{#if isAutoReply}}
<span
class="fas fas fa-robot small text-muted"
title="{{translate 'isAutoReply' category='fields' scope='Email'}}"
></span>
{{/if}}
</span>
{{/if}}
</span>

View File

@@ -0,0 +1,11 @@
<div class="page-header">{{{header}}}</div>
<div class="search-container">{{{search}}}</div>
<div class="row">
{{#unless foldersDisabled}}
<div class="left-container{{#unless foldersDisabled}} col-md-2 col-sm-3{{else}} col-md-12{{/unless}}">
<div class="folders-container">{{{folders}}}</div>
</div>
{{/unless}}
<div class="list-container{{#unless foldersDisabled}} col-md-10 col-sm-9{{else}} col-md-12{{/unless}}">{{{list}}}</div>
</div>