This repository was archived by the owner on Nov 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathquickResume.html
More file actions
executable file
·71 lines (66 loc) · 2.56 KB
/
quickResume.html
File metadata and controls
executable file
·71 lines (66 loc) · 2.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<div class="quick-resume">
<div class="container">
<div class="well frm-well">
<div class="row">
<div class="col-xs-11">
<div class="dp-title" data-toggle="tooltip" title="{{userStory.description}}">
{{userStory.shortDescription}}
<span class="dp-label label label-primary dp-label-{{userStory.status}}">
{{userStory.status | removeDashes | capitalize}}
</span>
</div>
</div>
<div class="col-xs-1">
<div class="pull-right">
<strong> ID: {{userStory.id}}</strong>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<a ng-href="{{userStory.showDetailedUri}}"
target="_blank"
class="dp-link-title">
<i class="fa fa-external-link"></i>
Show detailed user history
</a>
</div>
</div>
<div class="row add-margin-top">
<div class="col-xs-3">
<i class="fa fa-user" aria-hidden="true"></i>
<strong>Submitted by</strong>
<a href ng-click="mailTo(userStory.submitted_by.email)">
{{userStory.submitted_by.name}}
</a>
</div>
<div class="col-xs-3">
<i class="fa fa-calendar" aria-hidden="true"></i>
<strong> Created on</strong> {{userStory.createdOn}}
<div class="text-warning" ng-show="warnings.createdOn">
<span class="glyphicon glyphicon-warning-sign" aria-hidden="true"></span>
{{warnings.createdOn.message}}
</div>
</div>
<div class="col-xs-3">
<i class="fa fa-calendar" aria-hidden="true"></i>
<strong>Updated on</strong> {{userStory.updatedOn}}
<div class="text-warning" ng-show="warnings.updatedOn">
<span class="glyphicon glyphicon-warning-sign" aria-hidden="true"></span>
{{warnings.updatedOn.message}}
</div>
</div>
</div>
<div class="row add-margin-top">
<div class="col-xs-12">
<div class="progress">
<div class="progress-bar progress-bar-success progress-bar-striped" role="progressbar"
aria-valuenow="{{userStory.completed.percentage}}" aria-valuemin="0" aria-valuemax="100" style="width: {{userStory.completed.percentage}}%">
<span class="sr-only">{{userStory.completed.completed}} / {{userStory.completed.total}} Blueprints completed</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>