blob: 92b37543ac7de3d4fd61a73d3931c8d713ad2d10 (
plain)
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
|
[%# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.
#%]
[%#
# title: (string, optional) main title of module
# collapse: (boolean) if true, show as collapsed by default (default false)
# subtitle: (optional) any of:
# a string
# an array of: (will be joined with ", ")
# string (will be filtered)
# { unfiltered: html } (will not be filtered)
# content: (string, required) module's content (use WRAPPER module..)
# hide_on_view: (boolean) if true, the module won't be visible in view mode
# hide_on_edit: (boolean) if true, the module won't be visible in edit mode
# no_collapse_persist: (boolean) if true, the module's collapsed state will
# not be remembered between page loads
#%]
<div class="module
[%~ " edit-hide" IF hide_on_edit %]
[%~ " edit-show" IF hide_on_view && !hide_on_edit %]"
[% IF hide_on_view +%] style="display:none"[% END %]
[% IF title %] id="module-[% title.replace FILTER id %]"[% END %]
[%~ ' data-non-stick="1"' IF no_collapse_persist %]
>
[% IF title %]
<div class="module-header">
<div class="module-latch">
<div class="module-spinner">[% collapsed ? "▸" : "▾" %]</div>
<div class="module-title">[% title FILTER html %]</div>
[% IF subtitle != "" && subtitle.size %]
<div class="module-subtitle">
([% FOREACH st IN subtitle.list %]
[% IF st.unfiltered.defined %]
[% st.unfiltered FILTER none %]
[% ELSE %]
[% st FILTER html %]
[% END %]
[% ", " UNLESS loop.last %]
[% END %])
</div>
[% END %]
</div>
</div>
[% END %]
<div class="module-content" [% ' style="display:none"' IF collapsed %] >
[% content FILTER none %]
</div>
</div>
|