Project

General

Profile

1
<div class="row">
2
	<div class="col-xs-12 col-sm-12 col-md-offset-3 col-md-6">
3
		<label>{{currentSection}}</label>
4
		<div ng-show="wfList" class="list-group">
5
			<a href="#/wf/{{wf.wfId}}" ng-repeat="wf in wfList" class="list-group-item">
6
				<span class="glyphicon glyphicon-chevron-right pull-right"></span>
7
				<h4 class="list-group-item-heading">{{wf.name}}</h4>
8
				<p class="list-group-item-text">{{wf.desc}}</p>
9
			</a>
10
		</div>
11

    
12
		<div ng-hide="wfList">
13
			<label>(No workflows)</label>
14
		</div>
15
	</div>
16
</div>
(14-14/16)