-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
143 lines (143 loc) · 4.52 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html>
<head>
<title>
Golda 6
</title>
<meta content="500" http-equiv="refresh">
<meta charset="utf-8"/>
<link href="css/main.css" media="screen" rel="stylesheet" type="text/css"/>
<link href="css/jquery.gcal_flow.css" rel="stylesheet" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js">
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js">
</script>
<script src="scripts/jquery.gcal_flow.js" type="text/javascript">
</script>
<script src="scripts/globalize.js" type="text/javascript">
</script>
<script src="issues.json" type="text/javascript">
</script>
<script type="text/javascript">
var app = angular.module("redmineList", []);
app.controller("myCtrl", function($scope) {
$scope.issues = JSON.parse(data);
$scope.messages = JSON.parse(messages);
$scope.weather = JSON.parse(weather);
});
</script>
<script type="text/javascript">
var $ = jQuery;
$(function() {
$('#gcf-design').gCalFlow({
calid: '[email protected]',
maxitem: 4,
auto_scroll: false,
globalize_fmt_datetime: "dddd' 'd'/'M' 'HH':'mm"
});
});
</script>
</link>
</meta>
</head>
<body ng-app="redmineList" ng-controller="myCtrl">
<div id="background-container">
<div id="background">
</div>
</div>
<!-- time and date -->
<div id="timeanddate">
<label style="margin-top: 20px;">
{{weather["temp_c"]}}°
</label>
<img src='{{weather["icon_url"]}}'>
</img>
<iframe allowtransparency="true" frameborder="0" height="50" id="date" src="http://free.timeanddate.com/clock/i5nmzu63/n676/tlil18/fn14/fs42/fcfeb423/tct/pct/pd3/tt1/tw0/tm2" width="414">
</iframe>
<iframe allowtransparency="true" frameborder="0" height="50" id="clock" src="http://free.timeanddate.com/clock/i5nmzu63/n676/tlil18/fn14/fs42/fcfeb423/tct/pct/pd3/th1" width="200">
</iframe>
</div>
<section>
<div class="cornered">
<p class="header" id="header1">
תקלות פתוחות
</p>
<p class="header" id="header2">
מועדון דיירים
</p>
<!-- <p class="header" display:="" id="header3" none="">
הודעות
</p> -->
</div>
<br>
<!-- redmine issues -->
<div class="tbl-content" id="content1">
<table border="0" cellpadding="0" cellspacing="0" dir="rtl">
<thead>
<tr>
<th>
סד׳
</th>
<th>
</th>
<th>
נושא
</th>
<th>
סטאטוס
</th>
<th>
כמה ימים פתוח
</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="x in issues">
<td style="text-align: center;">
{{$index + 1}}
</td>
<td>
</td>
<td>
{{x.subject}}
</td>
<td style="text-align: center;font-size: 25px;width: 210px">
{{x.status}}
</td>
<td style="text-align: center;">
{{x.days_open}} ימים
</td>
</tr>
</tbody>
</table>
</div>
<!-- calendar -->
<div id="content2">
<div id="gcf-design">
<div class="gcf-item-container-block">
<div class="gcf-item-block">
<div class="gcf-item-header-block">
<div class="gcf-item-date-block">
<span class="gcf-item-daterange">
</span>
</div>
<div class="gcf-item-title-block">
<strong class="gcf-item-title">
</strong>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Picture -->
<div class="pic" id="content3">
<img alt="" src="images/page3.jpg">
</img>
</div>
</br>
</section>
</body>
<footer>
</footer>
</html>