-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskBoard.html
More file actions
70 lines (61 loc) · 2.09 KB
/
Copy pathTaskBoard.html
File metadata and controls
70 lines (61 loc) · 2.09 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
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<style>
body {font-family: Arial, Helvetica, sans-serif;}
* {
width: 50%
box-sizing: border-box;}
input[type=text], select, textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
}
input[type=submit] {
background-color: #4CAF50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
.container {
border-radius: 5px;
background-color: #f2f2f2;
margin: auto;
padding: 12px 20px;
width: 50%;
}
</style>
<body>
<div class="container">
<form action="\AddTask" method="get">
<input type="text" name="Task_name" id="Task_name" placeholder="Enter task name........"></br>
<input type="text" name="Task_owner" id="Task_owner" placeholder=" Assign task to........"> </br>
<input type="text" name="Task_due" id="Task_due" placeholder="Task Due date........"> </br>
<input type="hidden" name="TaskBoard_uid" name="TaskBoard_uid" value="{{TaskBoard_uid}}">
<input type="hidden" id="Task_boardname" name="Task_boardname" value="{{Task_boardname}}">
<input type="submit" name="submit" id="submit" text="submit">
</form>
<div>
<h1>{{Task_boardname}}</h1>
<ul class="list-group">
{% for i in result %}
<b ><font size=+2 ><li class="list-group-item" ><input type="checkbox" style="vertical-align: right" class="form-check-input" name="ev_uid" value="{{i.Task_name}}"> <a href="/EditTask?EditView=True&TaskBoard_uid={{TaskBoard_uid}}">{{i.Task_name}}
</a><div align="right"><a style="font-size: 60%">{{i.Task_owner}}</a></div></font>
<div align="right" >
<a>Task Due: {{i.Task_due}}</a></b></div>
<br/>
</li>
{% endfor %}
</ul>
</div>
</body>
</html>