Initial commit
This commit is contained in:
93
client/res/templates/admin/entity-manager/scope.tpl
Normal file
93
client/res/templates/admin/entity-manager/scope.tpl
Normal file
@@ -0,0 +1,93 @@
|
||||
<div class="page-header">
|
||||
<h3><a href="#Admin">{{translate 'Administration'}}</a>
|
||||
<span class="breadcrumb-separator"><span></span></span>
|
||||
<a href="#Admin/entityManager">{{translate 'Entity Manager' scope='Admin'}}</a>
|
||||
<span class="breadcrumb-separator"><span></span></span>
|
||||
{{translate scope category='scopeNames'}}
|
||||
</h3>
|
||||
</div>
|
||||
|
||||
<div class="button-container">
|
||||
<div class="btn-group actions-btn-group" role="group">
|
||||
{{#if isEditable}}
|
||||
<button class="btn btn-default action btn-lg action btn-wide" data-action="editEntity">
|
||||
<span class="icon fas fa-cog"></span>
|
||||
{{translate 'Edit'}}
|
||||
</button>
|
||||
{{/if}}
|
||||
{{#if isRemovable}}
|
||||
<button class="btn btn-default btn-lg dropdown-toggle item-dropdown-button" data-toggle="dropdown">
|
||||
<span class="fas fa-ellipsis-h"></span>
|
||||
</button>
|
||||
<ul class="dropdown-menu pull-left">
|
||||
<li><a role="button" tabindex="0" data-action="removeEntity">{{translate 'Remove'}}</a></li>
|
||||
</ul>
|
||||
{{/if}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="record record-container">{{{record}}}</div>
|
||||
<div class="record">
|
||||
<div class="record-grid">
|
||||
<div class="left">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body panel-body-form">
|
||||
<div class="row">
|
||||
<div class="cell col-sm-6 form-group">
|
||||
{{#if hasFields}}
|
||||
<div>
|
||||
<a
|
||||
class="btn btn-default btn-lg action btn-full-wide"
|
||||
href="#Admin/fieldManager/scope={{scope}}"
|
||||
>
|
||||
<span class="fas fa-asterisk"></span>
|
||||
{{translate 'Fields' scope='EntityManager'}}
|
||||
</a>
|
||||
</div>
|
||||
{{/if}}
|
||||
</div>
|
||||
<div class="cell col-sm-6 form-group">
|
||||
{{#if hasRelationships}}
|
||||
<div>
|
||||
<a
|
||||
class="btn btn-default btn-lg action btn-full-wide"
|
||||
href="#Admin/linkManager/scope={{scope}}"
|
||||
>
|
||||
<span class="fas fa-link"></span>
|
||||
{{translate 'Relationships' scope='EntityManager'}}
|
||||
</a>
|
||||
</div>
|
||||
{{/if}}
|
||||
</div>
|
||||
<div class="cell col-sm-6 form-group">
|
||||
{{#if hasLayouts}}
|
||||
<div>
|
||||
<a
|
||||
class="btn btn-default btn-lg action btn-full-wide"
|
||||
href="#Admin/layouts/scope={{scope}}&em=true"
|
||||
>
|
||||
<span class="fas fa-table"></span>
|
||||
{{translate 'Layouts' scope='EntityManager'}}
|
||||
</a>
|
||||
</div>
|
||||
{{/if}}
|
||||
</div>
|
||||
<div class="cell col-sm-6 form-group">
|
||||
{{#if hasFormula}}
|
||||
<div>
|
||||
<a
|
||||
class="btn btn-default btn-lg action btn-full-wide"
|
||||
data-action="editFormula"
|
||||
>
|
||||
<span class="fas fa-code"></span>
|
||||
{{translate 'Formula' scope='EntityManager'}}
|
||||
</a>
|
||||
</div>
|
||||
{{/if}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user