Skip to content
Snippets Groups Projects
Commit 64865389 authored by jaden's avatar jaden
Browse files

move alias to beg of group exps panel, closes #46

parent 9b811c66
No related branches found
No related tags found
1 merge request!223Reports overhaul
......@@ -109,9 +109,9 @@ angular.module('reportApp').directive("groupPanelExperiments", ['GroupsService',
<thead>
<tr>
<th></th>
<th>Alias</th>
<th>Experiment</th>
<th>Databases/Protocols</th>
<th>Alias</th>
</tr>
</thead>
<tbody>
......@@ -127,6 +127,8 @@ angular.module('reportApp').directive("groupPanelExperiments", ['GroupsService',
</span>
</div>
</td>
<td ng-if='!isViewmode()'><input ng-model='group.aliases[expName]'></input></td>
<td ng-if='isViewmode()'><span>{{ group.aliases[expName] }}</span></td>
<td><a href='{{ getExpUrl(expName) }}'>{{ expName }}</a></td>
<td>
<span ng-repeat='db in getExpDatabases(expName)'>
......@@ -134,8 +136,6 @@ angular.module('reportApp').directive("groupPanelExperiments", ['GroupsService',
&nbsp;
</span>
</td>
<td ng-if='!isViewmode()'><input ng-model='group.aliases[expName]'></input></td>
<td ng-if='isViewmode()'><span>{{ group.aliases[expName] }}</span></td>
</tr>
</tbody>
</table>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment