-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplate.html
120 lines (103 loc) · 4.57 KB
/
template.html
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<div class="container-fluid">
<div data-palladio-list-view
list-dimension="id"
cards-height="cardsHeight"
max-to-display="1000"
img-url-accessor="imgurlAccessor"
title-accessor="titleAccessor"
subtitle-accessor="subtitleAccessor"
text-accessor="textAccessor"
link-accessor="linkAccessor"
sort-options="sortOptions"></div>
</div>
<!-- Settings -->
<div class="row cards-settings" data-ng-show="showSettings || showSettings === undefined">
<div class="settings col-lg-4 col-lg-offset-8 col-md-6 col-md-offset-6">
<div class="panel panel-default">
<a class="settings-toggle" data-toggle="tooltip" data-original-title="Settings" data-placement="bottom">
<i class="fa fa-bars"></i>
</a>
<div class="panel-body">
<div class="row">
<div class="col-lg-12">
<label>Settings</label>
</div>
</div>
<div class="row margin-top">
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-4 text-right">
<label class="inline">Title</label>
</div>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-8 col-condensed">
<span class="btn btn-default" ng-click="showTitleModal()">
{{titleDim.description || "Choose"}}
<span class="caret"></span>
</span>
</div>
</div>
<div class="row margin-top">
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-4 text-right">
<label class="inline">Subtitle</label>
</div>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-8 col-condensed">
<span class="btn btn-default" ng-click="showSubtitleModal()">
{{subtitleDim.description || "Choose"}}
<span class="caret"></span>
</span>
</div>
</div>
<div class="row margin-top">
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-4 text-right">
<label class="inline">Text</label>
</div>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-8 col-condensed">
<span class="btn btn-default" ng-click="showTextModal()">
{{textDim.description || "Choose"}}
<span class="caret"></span>
</span>
</div>
</div>
<div class="row margin-top">
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-4 text-right">
<label class="inline">Link</label>
</div>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-8 col-condensed">
<span class="btn btn-default" ng-click="showLinkModal()">
{{linkDim.description || "Choose"}}
<span class="caret"></span>
</span>
</div>
</div>
<div class="row margin-top">
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-4 text-right">
<label class="inline">Image URL</label>
</div>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-8 col-condensed">
<span class="btn btn-default" ng-click="showImgURLModal()">
{{imgurlDim.description || "Choose"}}
<span class="caret"></span>
</span>
</div>
</div>
<div class="row margin-top">
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-4 text-right">
<label class="inline">Sort by</label>
</div>
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-8 col-condensed">
<span class="btn btn-default" ng-click="showSortModal()">
{{sortDim.description || "Choose"}}
<span class="caret"></span>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="{{uniqueModalId}}">
<div id="title-modal" data-modal description="Choose title (a unique value)" dimensions="fields" model="titleDim"></div>
<div id="subtitle-modal" data-modal description="Choose sub-title" dimensions="fields" model="subtitleDim"></div>
<div id="text-modal" data-modal description="Choose text" dimensions="fields" model="textDim"></div>
<div id="link-modal" data-modal description="Choose link (URL to launch on click)" dimensions="urlDims" model="linkDim"></div>
<div id="imgurl-modal" data-modal description="Choose image (URL of image)" dimensions="urlDims" model="imgurlDim"></div>
<div id="sort-modal" data-modal description="Choose sort order dimension" dimensions="fields" model="sortDim"></div>
</div>