forked from ivbhatt/Simplii
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bae7cf8
commit eccfdfe
Showing
4 changed files
with
129 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
<div class="card status-card col-md" style="width: auto;"> | ||
<i class="material-icons card-icons">task</i> | ||
<div class="card-body"> | ||
<h5 class="card-title">All Tasks</h5> | ||
</div> | ||
<table data-toggle="table" data-flat="true" data-search="true"> | ||
<thead> | ||
<tr style="background-color: #D5D8DD; text-align: center;"> | ||
<th>Task</th> | ||
<th data-sortable="true">Status</th> | ||
<th>Category</th> | ||
<th>Start Date</th> | ||
<th>Due Date</th> | ||
<th>Edit</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td>Finalize Kickoff Materials</td> | ||
<td style="background-color: lightgreen;">Done</td> | ||
<td>Development</td> | ||
<td>18th October, 2021</td> | ||
<td>18th October, 2021</td> | ||
<td style="text-align: center;"><a href="/edit_task"><i class="material-icons">edit</i></a></td> | ||
</tr> | ||
|
||
<tr> | ||
<td>Refine Objectives</td> | ||
<td style="background-color: lightblue;">In Progress</td> | ||
<td>Development</td> | ||
<td>18th October, 2021</td> | ||
<td>18th October, 2021</td> | ||
<td style="text-align: center;"><a href=""><i class="material-icons">edit</i></a></td> | ||
</tr> | ||
|
||
<tr> | ||
<td>Identify Key Sources</td> | ||
<td style="background-color: lightcoral;">Stuck</td> | ||
<td>Refactoring</td> | ||
<td>18th October, 2021</td> | ||
<td>18th October, 2021</td> | ||
<td style="text-align: center;"><a href=""><i class="material-icons">edit</i></a></td> | ||
</tr> | ||
|
||
<tr> | ||
<td>Develop Communication Plan</td> | ||
<td style="background-color: lightyellow;">Waiting</td> | ||
<td>Development</td> | ||
<td>18th October, 2021</td> | ||
<td>18th October, 2021</td> | ||
<td style="text-align: center;"><a href=""><i class="material-icons">edit</i></a></td> | ||
</tr> | ||
|
||
<tr> | ||
<td>Finalize Kickoff Materials</td> | ||
<td style="background-color: lightgreen;">Done</td> | ||
<td>Development</td> | ||
<td>18th October, 2021</td> | ||
<td>18th October, 2021</td> | ||
<td style="text-align: center;"><a href="/edit_task"><i class="material-icons">edit</i></a></td> | ||
</tr> | ||
|
||
<tr> | ||
<td>Refine Objectives</td> | ||
<td style="background-color: lightblue;">In Progress</td> | ||
<td>Development</td> | ||
<td>18th October, 2021</td> | ||
<td>18th October, 2021</td> | ||
<td style="text-align: center;"><a href=""><i class="material-icons">edit</i></a></td> | ||
</tr> | ||
|
||
<tr> | ||
<td>Identify Key Sources</td> | ||
<td style="background-color: lightcoral;">Stuck</td> | ||
<td>Refactoring</td> | ||
<td>18th October, 2021</td> | ||
<td>18th October, 2021</td> | ||
<td style="text-align: center;"><a href=""><i class="material-icons">edit</i></a></td> | ||
</tr> | ||
|
||
<tr> | ||
<td>Develop Communication Plan</td> | ||
<td style="background-color: lightyellow;">Waiting</td> | ||
<td>Development</td> | ||
<td>18th October, 2021</td> | ||
<td>18th October, 2021</td> | ||
<td style="text-align: center;"><a href=""><i class="material-icons">edit</i></a></td> | ||
</tr> | ||
|
||
</tbody> | ||
</table> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{% extends "layout/base.html" %} {% block content %} | ||
|
||
<div class="container-fluid"> | ||
<div class="row content"> | ||
|
||
<!-- Left Sidebar --> | ||
<div class="col-sm-3 sidenav sidenav-left"> | ||
|
||
{% include 'layout/user_details.html' %} | ||
|
||
</div> | ||
|
||
<!-- Content --> | ||
<div class="col-sm-9 text-left main-content"> | ||
<center> | ||
|
||
<!-- View all tasks --> | ||
{% include 'tasks/all_tasks.html' %} | ||
|
||
</center> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
{% endblock content %} |