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', ...@@ -109,9 +109,9 @@ angular.module('reportApp').directive("groupPanelExperiments", ['GroupsService',
<thead> <thead>
<tr> <tr>
<th></th> <th></th>
<th>Alias</th>
<th>Experiment</th> <th>Experiment</th>
<th>Databases/Protocols</th> <th>Databases/Protocols</th>
<th>Alias</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
...@@ -127,6 +127,8 @@ angular.module('reportApp').directive("groupPanelExperiments", ['GroupsService', ...@@ -127,6 +127,8 @@ angular.module('reportApp').directive("groupPanelExperiments", ['GroupsService',
</span> </span>
</div> </div>
</td> </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><a href='{{ getExpUrl(expName) }}'>{{ expName }}</a></td>
<td> <td>
<span ng-repeat='db in getExpDatabases(expName)'> <span ng-repeat='db in getExpDatabases(expName)'>
...@@ -134,8 +136,6 @@ angular.module('reportApp').directive("groupPanelExperiments", ['GroupsService', ...@@ -134,8 +136,6 @@ angular.module('reportApp').directive("groupPanelExperiments", ['GroupsService',
&nbsp; &nbsp;
</span> </span>
</td> </td>
<td ng-if='!isViewmode()'><input ng-model='group.aliases[expName]'></input></td>
<td ng-if='isViewmode()'><span>{{ group.aliases[expName] }}</span></td>
</tr> </tr>
</tbody> </tbody>
</table> </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