Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
beat.web
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
beat
beat.web
Commits
44170178
Commit
44170178
authored
8 years ago
by
Jaden Diefenbaugh
Browse files
Options
Downloads
Patches
Plain Diff
clearer controller alias, add noop trigger for editor highlighting
parent
175ba981
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!223
Reports overhaul
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
beat/web/reports/templates/reports/panels/viewer.html
+9
-8
9 additions, 8 deletions
beat/web/reports/templates/reports/panels/viewer.html
with
9 additions
and
8 deletions
beat/web/reports/templates/reports/panels/viewer.html
+
9
−
8
View file @
44170178
{# '{#' is a trigger for django highlighting in editors #}
{% comment %}
* Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/
* Contact: beat.support@idiap.ch
...
...
@@ -45,7 +46,7 @@
</div>
{# panel #}
{# GROUPS DISPLAY/EDITOR #}
<div
id=
'groups'
class=
'panel panel-default'
ng-controller=
'GroupsController as groups'
>
<div
id=
'groups'
class=
'panel panel-default'
ng-controller=
'GroupsController as groups
Ctrl
'
>
<div
id=
"groups-heading"
class=
"panel-heading"
role=
"tab"
>
<h4
class=
"panel-title"
>
<a
...
...
@@ -69,25 +70,25 @@
<div
class=
'col-lg-6'
>
<div
class=
"input-group"
>
<span
class=
"input-group-btn"
>
<button
ng-click=
'groups.createGroup(groups.newGroupName)'
class=
"btn btn-default"
type=
"button"
>
Create
</button>
<button
ng-click=
'groups
Ctrl
.createGroup(groups
Ctrl
.newGroupName)'
class=
"btn btn-default"
type=
"button"
>
Create
</button>
</span>
<input
ng-model=
'groups.newGroupName'
type=
"text"
class=
"form-control"
placeholder=
"Group name..."
>
<input
ng-model=
'groups
Ctrl
.newGroupName'
type=
"text"
class=
"form-control"
placeholder=
"Group name..."
>
</div>
</div>
</div>
<div
ng-repeat=
'group in groups.groups track by $index'
ng-class=
'groups.classArr(group.name)'
>
<div
ng-repeat=
'group in groups
Ctrl
.groups track by $index'
ng-class=
'groups
Ctrl
.classArr(group.name)'
>
<div
class=
'panel-heading'
>
<h4
class=
'panel-title'
>
{$ group.name $}
</h4>
</div>
<div
class=
'panel-body'
>
<button
class=
'btn btn-success'
ng-click=
'groups.setActiveGroup(group.name)'
>
ng-click=
'groups
Ctrl
.setActiveGroup(group.name)'
>
Set as Active Group
</button>
<button
class=
'btn btn-danger'
ng-click=
'groups.deleteGroup(group.name)'
>
ng-click=
'groups
Ctrl
.deleteGroup(group.name)'
>
Delete Group
</button>
<div
class=
"dropdown pull-left"
>
...
...
@@ -102,7 +103,7 @@
<span
class=
"caret"
></span>
</button>
<ul
class=
"dropdown-menu"
aria-labelledby=
"dropdownMenu1"
>
<li
ng-click=
'groups.addExperimentToGroup(expName, group.name)'
ng-repeat=
'(expName, exp) in groups.compatibleExperiments(group.analyzer)'
>
<li
ng-click=
'groups
Ctrl
.addExperimentToGroup(expName, group.name)'
ng-repeat=
'(expName, exp) in groups
Ctrl
.compatibleExperiments(group.analyzer)'
>
<a
href=
'#'
>
{$ expName $}
</a>
</li>
</ul>
...
...
@@ -120,7 +121,7 @@
{$ expName $}
<button
class=
'btn btn-danger'
ng-click=
'groups.removeExperimentFromGroup(expName, group.name)'
>
ng-click=
'groups
Ctrl
.removeExperimentFromGroup(expName, group.name)'
>
Remove Experiment
</button>
</li>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment