-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathschemas.hbs
52 lines (50 loc) · 1.95 KB
/
schemas.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{{#content "head"}}
{{> head}}
{{/content}}
{{#content "nav"}}
{{> nav}}
{{/content}}
{{#content "page"}}
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
Gestion des configurations d'OTF² démo
</h1>
<ol class="breadcrumb">
<li><a href="/index"><i class="fa fa-home"></i> Home</a></li>
<li><a href="#">Directories Schemas</a></li>
<li class="active">List</li>
</ol>
</section>
<!-- Main content -->
<section class="content">
<div class="row">
<div class="col-xs-12">
<div class="box box-warning">
<div class="box-header">
<h3 class="box-title">Liste des fichiers de config d'OTF² Démo</h3>
</div><!-- /.box-header -->
<div class="box-body">
{{renderComponent 'dataTable'
urlJson="/schemas"
nbLines="5"
isEditBtn=true
urlEditBtn="/readDirSchema"
idEditBtn="name"
isDelBtn=false
urlDelBtn="/#"
idDelBtn=""
values='["name"]'
}}
</div><!-- /.box-body -->
</div><!-- /.box -->
</div>
</div>
</section><!-- /.content -->
</div><!-- /.content-wrapper -->
{{/content}}
{{#content "footer"}}
{{> footer}}
{{/content}}