Initial commit
This commit is contained in:
1
client/res/templates/fields/base/detail.tpl
Normal file
1
client/res/templates/fields/base/detail.tpl
Normal file
@@ -0,0 +1 @@
|
||||
{{value}}
|
||||
11
client/res/templates/fields/base/edit.tpl
Normal file
11
client/res/templates/fields/base/edit.tpl
Normal file
@@ -0,0 +1,11 @@
|
||||
<input
|
||||
type="text"
|
||||
class="main-element form-control"
|
||||
data-name="{{name}}"
|
||||
value="{{value}}"
|
||||
{{#if params.maxLength}} maxlength="{{params.maxLength}}"{{/if}}
|
||||
autocomplete="espo-{{name}}"
|
||||
{{#if noSpellCheck}}
|
||||
spellcheck="false"
|
||||
{{/if}}
|
||||
>
|
||||
6
client/res/templates/fields/base/list-link.tpl
Normal file
6
client/res/templates/fields/base/list-link.tpl
Normal file
@@ -0,0 +1,6 @@
|
||||
<a
|
||||
href="#{{scope}}/view/{{model.id}}"
|
||||
class="link"
|
||||
data-id="{{model.id}}"
|
||||
title="{{value}}"
|
||||
>{{#if value}}{{value}}{{else}}{{translate 'None'}}{{/if}}</a>
|
||||
1
client/res/templates/fields/base/list.tpl
Normal file
1
client/res/templates/fields/base/list.tpl
Normal file
@@ -0,0 +1 @@
|
||||
{{value}}
|
||||
12
client/res/templates/fields/base/search.tpl
Normal file
12
client/res/templates/fields/base/search.tpl
Normal file
@@ -0,0 +1,12 @@
|
||||
<input
|
||||
type="text"
|
||||
class="main-element form-control input-sm"
|
||||
data-name="{{name}}"
|
||||
value="{{searchParams.value}}" {{#if params.maxLength}}
|
||||
maxlength="{{params.maxLength}}"{{/if}}{{#if params.size}}
|
||||
size="{{params.size}}"{{/if}}
|
||||
autocomplete="espo-{{name}}"
|
||||
{{#if noSpellCheck}}
|
||||
spellcheck="false"
|
||||
{{/if}}
|
||||
>
|
||||
Reference in New Issue
Block a user