2016-03-16 12:31:22 +00:00
|
|
|
{% extends "templates/web.html" %}
|
|
|
|
{% block title %} {{ doc.name }} {% endblock %}
|
|
|
|
{% block breadcrumbs %}
|
2016-12-05 08:47:26 +00:00
|
|
|
<div class="page-breadcrumbs" data-html-block="breadcrumbs">
|
2016-03-16 12:31:22 +00:00
|
|
|
<ul class="breadcrumb">
|
|
|
|
<li>
|
2016-12-05 08:47:26 +00:00
|
|
|
<span class="fa fa-angle-left"></span>
|
2016-03-16 12:31:22 +00:00
|
|
|
<a href="/projects?project={{ doc.project }}">{{ doc.project }}</a>
|
2016-12-05 08:47:26 +00:00
|
|
|
</li>
|
2016-03-16 12:31:22 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block page_content %}
|
|
|
|
<div class=" col-sm-8 ">
|
|
|
|
<h1> {{ doc.name }} </h1>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="page-content-block">
|
|
|
|
<div class="row">
|
2016-12-05 08:47:26 +00:00
|
|
|
<div class="col-sm-12" style="max-width: 500px;">
|
2017-05-17 14:12:04 +00:00
|
|
|
<label for="project" class="control-label text-muted small">{{ __("Project") }}</label>
|
2016-12-05 08:47:26 +00:00
|
|
|
<input type="text" class="form-control" name="project" readonly value= "{{ doc.project }}">
|
|
|
|
|
2017-05-17 14:12:04 +00:00
|
|
|
<label for="activity_type" class="control-label text-muted small">{{ __("Activity Type") }}</label>
|
2016-12-05 08:47:26 +00:00
|
|
|
<input type="text" class="form-control" name="activity_type" readonly value= "{{ doc.activity_type }}">
|
2016-03-16 12:31:22 +00:00
|
|
|
|
2017-05-17 14:12:04 +00:00
|
|
|
<label for="task" class="control-label text-muted small">{{ __("Task") }}</label>
|
2016-12-05 08:47:26 +00:00
|
|
|
<input type="text" class="form-control" name="task" readonly value= "{{ doc.task }}">
|
2016-03-16 12:31:22 +00:00
|
|
|
|
2017-05-17 14:12:04 +00:00
|
|
|
<label for="from_time" class="control-label text-muted small">{{ __("From Time") }}</label>
|
2016-12-05 08:47:26 +00:00
|
|
|
<input type="text" class="form-control" name="from_time" readonly value= "{{ doc.from_time }}">
|
|
|
|
|
2017-05-17 14:12:04 +00:00
|
|
|
<label for="to_time" class="control-label text-muted small">{{ __("To Time") }}</label>
|
2016-12-05 08:47:26 +00:00
|
|
|
<input type="text" class="form-control" name="to_time" readonly value= "{{ doc.to_time }}">
|
|
|
|
|
2017-05-17 14:12:04 +00:00
|
|
|
<label for="to_time" class="control-label text-muted small">{{ __("Hours") }}</label>
|
2016-03-16 12:31:22 +00:00
|
|
|
<input type="text" class="form-control" name="Hours" readonly value= "{{ doc.hours }}">
|
|
|
|
|
2017-05-17 14:12:04 +00:00
|
|
|
<label for="status" class="control-label text-muted small">{{ __("Status") }}</label>
|
2016-12-05 08:47:26 +00:00
|
|
|
<input type="text" class="form-control" name="status" readonly value= "{{ doc.status }}">
|
|
|
|
|
2017-05-17 14:12:04 +00:00
|
|
|
<label for="Note" class="control-label text-muted small">{{ __("Note") }}</label>
|
2016-03-16 12:31:22 +00:00
|
|
|
<textarea class="form-control" name="Hours" readonly> {{ doc.note }} </textarea>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|