-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
76 lines (66 loc) · 2.74 KB
/
index.html
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
72
73
74
75
76
<!doctype html>
<html lang="en" ng-app="Standup Assistant">
<head>
<meta charset="utf-8">
<title>Standup Assistant</title>
<link rel="stylesheet" href="js/jquery-ui/themes/base/jquery.ui.all.css">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/standup-assistant.css">
<script src="js/jquery-ui/js/jquery-1.8.3.js"></script>
<script src="js/jquery-ui/js/jquery-ui-1.9.2.custom.min.js"></script>
<script src="js/angular.min.js"></script>
<script src="js/angular-resource.min.js"></script>
<script src="js/ui.js"></script>
<script src="js/standup-assistant.js"></script>
</head>
<body>
<div class="container">
<h2>Standup Assistant</h2>
<!-- Report div -->
<div id="report" title="Report"></div>
<!-- Operation buttons -->
<div class="operations">
<input id="btn_gen_report" type="button" value="Generate report" />
<input id="btn_add_talent" type="button" value="Add talent" />
<input id="btn_add_project" type="button" value="Add project" />
<a href="admin.html">Admin</a>
</div>
<!-- Add talent form -->
<div class="add-form" id="talent_add_form" title="Create new talent">
<form>
<fieldset>
<label for="name">Name</label>
<input type="text" name="name" id="talent_name" class="text ui-widget-content ui-corner-all" />
<label for="name">Email</label>
<input type="text" name="email" id="talent_email" class="text ui-widget-content ui-corner-all" />
</fieldset>
</form>
</div>
<!-- Add project form -->
<div class="add-form" id="project_add_form" title="Create new project">
<form>
<fieldset>
<label for="name">Name</label>
<input type="text" name="name" id="project_name" class="text ui-widget-content ui-corner-all" />
</fieldset>
</form>
</div>
<div class="ui-widget ui-helper-clearfix" ng-controller="SaController">
<!-- All talents -->
<div class="tanents clearfix">
<ul class="talent ui-helper-reset ui-helper-clearfix">
<li ng-repeat="talent in talents" id="talent{{talent.id}}" name="{{talent.name}}" tid="{{talent.id}}" class="ui-widget-content ui-corner-tr">
<h5 class="ui-widget-header">{{talent.name}}</h5>
</li>
</ul>
</div>
<!-- All projects -->
<div class="projects clearfix">
<div ng-repeat="project in projects" id="project{{project.id}}" name="{{project.name}}" pid="{{project.id}}" class="project ui-widget-content ui-state-default">
<h4 class="ui-widget-header"><span class="ui-icon ui-icon-project">{{project.name}}</span> {{project.name}}</h4>
</div>
</div>
</div>
</div>
</body>
</html>