blob: be13826444c94c8d201a8098926ed52a89364351 [file] [log] [blame]
Kanchan Chauhanb3fe6a42016-03-16 18:01:22 +05301{% extends "templates/web.html" %}
2{% block title %} {{ doc.name }} {% endblock %}
3{% block breadcrumbs %}
Rushabh Mehta323c06e2016-12-05 14:17:26 +05304<div class="page-breadcrumbs" data-html-block="breadcrumbs">
Kanchan Chauhanb3fe6a42016-03-16 18:01:22 +05305 <ul class="breadcrumb">
6 <li>
Rushabh Mehta323c06e2016-12-05 14:17:26 +05307 <span class="fa fa-angle-left"></span>
Kanchan Chauhanb3fe6a42016-03-16 18:01:22 +05308 <a href="/projects?project={{ doc.project }}">{{ doc.project }}</a>
Rushabh Mehta323c06e2016-12-05 14:17:26 +05309 </li>
Kanchan Chauhanb3fe6a42016-03-16 18:01:22 +053010</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 Mehta323c06e2016-12-05 14:17:26 +053021 <div class="col-sm-12" style="max-width: 500px;">
Francisco Roldán85bfc052017-05-17 11:12:04 -030022 <label for="project" class="control-label text-muted small">{{ __("Project") }}</label>
Rushabh Mehta323c06e2016-12-05 14:17:26 +053023 <input type="text" class="form-control" name="project" readonly value= "{{ doc.project }}">
24
Francisco Roldán85bfc052017-05-17 11:12:04 -030025 <label for="activity_type" class="control-label text-muted small">{{ __("Activity Type") }}</label>
Rushabh Mehta323c06e2016-12-05 14:17:26 +053026 <input type="text" class="form-control" name="activity_type" readonly value= "{{ doc.activity_type }}">
Kanchan Chauhanb3fe6a42016-03-16 18:01:22 +053027
Francisco Roldán85bfc052017-05-17 11:12:04 -030028 <label for="task" class="control-label text-muted small">{{ __("Task") }}</label>
Rushabh Mehta323c06e2016-12-05 14:17:26 +053029 <input type="text" class="form-control" name="task" readonly value= "{{ doc.task }}">
Kanchan Chauhanb3fe6a42016-03-16 18:01:22 +053030
Francisco Roldán85bfc052017-05-17 11:12:04 -030031 <label for="from_time" class="control-label text-muted small">{{ __("From Time") }}</label>
Rushabh Mehta323c06e2016-12-05 14:17:26 +053032 <input type="text" class="form-control" name="from_time" readonly value= "{{ doc.from_time }}">
33
Francisco Roldán85bfc052017-05-17 11:12:04 -030034 <label for="to_time" class="control-label text-muted small">{{ __("To Time") }}</label>
Rushabh Mehta323c06e2016-12-05 14:17:26 +053035 <input type="text" class="form-control" name="to_time" readonly value= "{{ doc.to_time }}">
36
Francisco Roldán85bfc052017-05-17 11:12:04 -030037 <label for="to_time" class="control-label text-muted small">{{ __("Hours") }}</label>
Kanchan Chauhanb3fe6a42016-03-16 18:01:22 +053038 <input type="text" class="form-control" name="Hours" readonly value= "{{ doc.hours }}">
39
Francisco Roldán85bfc052017-05-17 11:12:04 -030040 <label for="status" class="control-label text-muted small">{{ __("Status") }}</label>
Rushabh Mehta323c06e2016-12-05 14:17:26 +053041 <input type="text" class="form-control" name="status" readonly value= "{{ doc.status }}">
42
Francisco Roldán85bfc052017-05-17 11:12:04 -030043 <label for="Note" class="control-label text-muted small">{{ __("Note") }}</label>
Kanchan Chauhanb3fe6a42016-03-16 18:01:22 +053044 <textarea class="form-control" name="Hours" readonly> {{ doc.note }} </textarea>
45 </div>
46 </div>
47 </div>
Ankush Menat4551d7d2021-08-19 13:41:10 +053048{% endblock %}