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 %} |
Rushabh Mehta | 323c06e | 2016-12-05 14:17:26 +0530 | [diff] [blame] | 4 | <div class="page-breadcrumbs" data-html-block="breadcrumbs"> |
Kanchan Chauhan | b3fe6a4 | 2016-03-16 18:01:22 +0530 | [diff] [blame] | 5 | <ul class="breadcrumb"> |
| 6 | <li> |
Rushabh Mehta | 323c06e | 2016-12-05 14:17:26 +0530 | [diff] [blame] | 7 | <span class="fa fa-angle-left"></span> |
Kanchan Chauhan | b3fe6a4 | 2016-03-16 18:01:22 +0530 | [diff] [blame] | 8 | <a href="/projects?project={{ doc.project }}">{{ doc.project }}</a> |
Rushabh Mehta | 323c06e | 2016-12-05 14:17:26 +0530 | [diff] [blame] | 9 | </li> |
Kanchan Chauhan | b3fe6a4 | 2016-03-16 18:01:22 +0530 | [diff] [blame] | 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"> |
Rushabh Mehta | 323c06e | 2016-12-05 14:17:26 +0530 | [diff] [blame] | 21 | <div class="col-sm-12" style="max-width: 500px;"> |
Francisco Roldán | 85bfc05 | 2017-05-17 11:12:04 -0300 | [diff] [blame] | 22 | <label for="project" class="control-label text-muted small">{{ __("Project") }}</label> |
Rushabh Mehta | 323c06e | 2016-12-05 14:17:26 +0530 | [diff] [blame] | 23 | <input type="text" class="form-control" name="project" readonly value= "{{ doc.project }}"> |
| 24 | |
Francisco Roldán | 85bfc05 | 2017-05-17 11:12:04 -0300 | [diff] [blame] | 25 | <label for="activity_type" class="control-label text-muted small">{{ __("Activity Type") }}</label> |
Rushabh Mehta | 323c06e | 2016-12-05 14:17:26 +0530 | [diff] [blame] | 26 | <input type="text" class="form-control" name="activity_type" readonly value= "{{ doc.activity_type }}"> |
Kanchan Chauhan | b3fe6a4 | 2016-03-16 18:01:22 +0530 | [diff] [blame] | 27 | |
Francisco Roldán | 85bfc05 | 2017-05-17 11:12:04 -0300 | [diff] [blame] | 28 | <label for="task" class="control-label text-muted small">{{ __("Task") }}</label> |
Rushabh Mehta | 323c06e | 2016-12-05 14:17:26 +0530 | [diff] [blame] | 29 | <input type="text" class="form-control" name="task" readonly value= "{{ doc.task }}"> |
Kanchan Chauhan | b3fe6a4 | 2016-03-16 18:01:22 +0530 | [diff] [blame] | 30 | |
Francisco Roldán | 85bfc05 | 2017-05-17 11:12:04 -0300 | [diff] [blame] | 31 | <label for="from_time" class="control-label text-muted small">{{ __("From Time") }}</label> |
Rushabh Mehta | 323c06e | 2016-12-05 14:17:26 +0530 | [diff] [blame] | 32 | <input type="text" class="form-control" name="from_time" readonly value= "{{ doc.from_time }}"> |
| 33 | |
Francisco Roldán | 85bfc05 | 2017-05-17 11:12:04 -0300 | [diff] [blame] | 34 | <label for="to_time" class="control-label text-muted small">{{ __("To Time") }}</label> |
Rushabh Mehta | 323c06e | 2016-12-05 14:17:26 +0530 | [diff] [blame] | 35 | <input type="text" class="form-control" name="to_time" readonly value= "{{ doc.to_time }}"> |
| 36 | |
Francisco Roldán | 85bfc05 | 2017-05-17 11:12:04 -0300 | [diff] [blame] | 37 | <label for="to_time" class="control-label text-muted small">{{ __("Hours") }}</label> |
Kanchan Chauhan | b3fe6a4 | 2016-03-16 18:01:22 +0530 | [diff] [blame] | 38 | <input type="text" class="form-control" name="Hours" readonly value= "{{ doc.hours }}"> |
| 39 | |
Francisco Roldán | 85bfc05 | 2017-05-17 11:12:04 -0300 | [diff] [blame] | 40 | <label for="status" class="control-label text-muted small">{{ __("Status") }}</label> |
Rushabh Mehta | 323c06e | 2016-12-05 14:17:26 +0530 | [diff] [blame] | 41 | <input type="text" class="form-control" name="status" readonly value= "{{ doc.status }}"> |
| 42 | |
Francisco Roldán | 85bfc05 | 2017-05-17 11:12:04 -0300 | [diff] [blame] | 43 | <label for="Note" class="control-label text-muted small">{{ __("Note") }}</label> |
Kanchan Chauhan | b3fe6a4 | 2016-03-16 18:01:22 +0530 | [diff] [blame] | 44 | <textarea class="form-control" name="Hours" readonly> {{ doc.note }} </textarea> |
| 45 | </div> |
| 46 | </div> |
| 47 | </div> |
Ankush Menat | 4551d7d | 2021-08-19 13:41:10 +0530 | [diff] [blame] | 48 | {% endblock %} |