Project

General

Profile

1 39754 michele.ar
<div class="form-group">
2 39756 michele.ar
	<label class="col-sm-3 control-label">{{name}}
3 42105 michele.ar
		<span ng-show="description" style="display: block; font-size: 90%; color: darkgrey;">{{description}}</span>
4 39756 michele.ar
	</label>
5 39754 michele.ar
6
	<div class="col-sm-9">
7 42105 michele.ar
		<p class="form-control-static">
8 42163 michele.ar
			<img ng-src="{{img}}" ng-if="img"/>
9
			<a href="{{url}}" ng-if="url" style="{{valueStyle}}">{{value?value:'-'}}</a>
10
			<span style="{{valueStyle}}" ng-if="!url">{{value?value:'-'}}</span>
11
			<span ng-if="valueDescription" style="display: block; font-size: 90%; color: darkgrey;">{{valueDescription}}</span>
12 42172 michele.ar
			<span ng-if="links && links.length > 0" style="margin-top: 8px">
13 42164 michele.ar
				<br />
14
				<a href="{{l.paramRequired ? (l.url | sprintf: value) : l.url}}" ng-repeat="l in links" ng-if="value || !l.paramRequired" style="margin-right:10px;">{{l.label}}</a>
15
			</span>
16 42105 michele.ar
		</p>
17 39754 michele.ar
	</div>
18
</div>