Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mirrors
biopet.biopet
Commits
9e81b5cc
Commit
9e81b5cc
authored
Jun 07, 2015
by
Peter van 't Hof
Browse files
code style
parent
3cf5aec9
Changes
1
Hide whitespace changes
Inline
Side-by-side
public/biopet-framework/src/main/resources/nl/lumc/sasc/biopet/core/report/main.ssp
View file @
9e81b5cc
...
...
@@ -7,7 +7,6 @@
<
%@
var
path:
List
[
String
]
%
>
<
%@
var
args:
Map
[
String
,
Any
]
%
>
<
%@
var
rootPath:
String
%
>
#{
def createMenu(page: ReportPage, path: List[String] = Nil): String = {
val buffer: StringBuffer = new StringBuffer()
...
...
@@ -95,22 +94,17 @@
</ul>
</div>
<div
class=
"col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main"
>
#for ((name,
url
)
<-
page.sections
)
#for ((name,
section
)
<-
page.sections
)
<
a
id=
"${name}"
></a>
<div
class=
"panel panel-primary"
>
<div
class=
"panel-heading"
>
<h3
class=
"panel-title"
id=
"panel-title"
>
${name}
</h3>
</div>
${unescape(
url
.render(args))}
<div
class=
"panel-heading"
>
<h3
class=
"panel-title"
id=
"panel-title"
>
${name}
</h3>
</div>
${unescape(
section
.render(args))}
</div>
<section
id=
"${name}"
>
</section>
#end
</div>
</div>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment