Kanchan Chauhan | b3fe6a4 | 2016-03-16 18:01:22 +0530 | [diff] [blame] | 1 | {% extends "templates/web.html" %} |
| 2 | {% block title %} {{ doc.name }} {% endblock %} |
| 3 | {% block breadcrumbs %} |
| 4 | <div class="page-breadcrumbs" data-html-block="breadcrumbs"> |
| 5 | <ul class="breadcrumb"> |
| 6 | <li> |
| 7 | <span class="icon icon-angle-left"></span> |
| 8 | <a href="/projects?project={{ doc.project }}">{{ doc.project }}</a> |
| 9 | </li> |
| 10 | </ul> |
| 11 | </div> |
| 12 | {% endblock %} |
| 13 | |
| 14 | {% block page_content %} |
| 15 | <div class=" col-sm-8 "> |
| 16 | <h1> {{ doc.name }} </h1> |
| 17 | </div> |
| 18 | |
| 19 | <div class="page-content-block"> |
| 20 | <div class="row"> |
| 21 | <div class="col-sm-12" style="max-width: 500px;"> |
| 22 | <label for="project" class="control-label text-muted small">Project</label> |
| 23 | <input type="text" class="form-control" name="project" readonly value= "{{ doc.project }}"> |
| 24 | |
| 25 | <label for="activity_type" class="control-label text-muted small">Activity Type</label> |
| 26 | <input type="text" class="form-control" name="activity_type" readonly value= "{{ doc.activity_type }}"> |
| 27 | |
| 28 | <label for="task" class="control-label text-muted small">Task</label> |
| 29 | <input type="text" class="form-control" name="task" readonly value= "{{ doc.task }}"> |
| 30 | |
| 31 | <label for="from_time" class="control-label text-muted small">From Time</label> |
| 32 | <input type="text" class="form-control" name="from_time" readonly value= "{{ doc.from_time }}"> |
| 33 | |
| 34 | <label for="to_time" class="control-label text-muted small">To Time</label> |
| 35 | <input type="text" class="form-control" name="to_time" readonly value= "{{ doc.to_time }}"> |
| 36 | |
| 37 | <label for="to_time" class="control-label text-muted small">Hours</label> |
| 38 | <input type="text" class="form-control" name="Hours" readonly value= "{{ doc.hours }}"> |
| 39 | |
| 40 | <label for="status" class="control-label text-muted small">Status</label> |
| 41 | <input type="text" class="form-control" name="status" readonly value= "{{ doc.status }}"> |
| 42 | |
| 43 | <label for="Note" class="control-label text-muted small">Note</label> |
| 44 | <textarea class="form-control" name="Hours" readonly> {{ doc.note }} </textarea> |
| 45 | </div> |
| 46 | </div> |
| 47 | </div> |
| 48 | {% endblock %} |