blob: cef93a55e102e370a8979ddec1402d1e5176038f [file] [log] [blame]
rohitwaghchaurea1064a62016-03-03 14:00:35 +05301{% extends "templates/web.html" %}
2
3{% block header %}
4<h1>{{ doc.name }}</h1>
5{% endblock %}
6
7{% block script %}
8<script>{% include "templates/includes/rfq.js" %}</script>
9{% endblock %}
10
11{% block breadcrumbs %}
12 {% include "templates/includes/breadcrumbs.html" %}
13{% endblock %}
14
rohitwaghchaurea1064a62016-03-03 14:00:35 +053015{% block header_actions %}
16{% if doc.items %}
17<button class="btn btn-primary btn-sm"
18 type="button">
19 {{ _("Submit") }}</button>
20{% endif %}
21{% endblock %}
22
23{% block page_content %}
24<div class="row">
25 <div class="col-xs-6">
26 <div class="rfq-supplier">{{ doc.supplier }}</div>
27 </div>
28 <div class="col-xs-6 text-muted text-right h6">
29 {{ doc.get_formatted("transaction_date") }}
30 </div>
31</div>
Rohit Waghchaure29c78762016-05-06 16:16:42 +053032<div class="rfq-content" style="margin-top:15px">
rohitwaghchaurea1064a62016-03-03 14:00:35 +053033 <div id="order-container">
34 <div id="rfq-items">
35 <div class="row cart-item-header">
36 <div class="col-sm-6 col-xs-6">
37 Items
38 </div>
39 <div class="col-sm-2 col-xs-2 text-right">
40 Qty
41 </div>
42 <div class="col-sm-2 col-xs-2 text-right">
43 Rate
44 </div>
45 <div class="col-sm-2 col-xs-2 text-right">
46 Amount
47 </div>
48 </div>
49 <hr>
50 {% if doc.items %}
51 <div class="rfq-items">
52 {% include "templates/includes/rfq/rfq_items.html" %}
53 </div>
54 {% endif %}
55 </div>
56 {% if doc.items %}
57 <div class="row grand-total-row">
58 <div class="col-xs-10 text-right">{{ _("Grand Total") }}</div>
59 <div class="col-xs-2 text-right">
Rohit Waghchaureae270d62016-04-04 18:49:26 +053060 {{doc.currency_symbol}} <span class="tax-grand-total">0.0</span>
rohitwaghchaurea1064a62016-03-03 14:00:35 +053061 </div>
62 </div>
63 {% endif %}
64 <div class="row terms">
Rushabh Mehta7a1b5da2016-03-29 16:04:25 +053065 <div class="col-xs-6">
66 <br><br>
67 <p class="text-muted small">{{ _("Notes: ") }}</p>
68 <textarea class="form-control terms-feedback" style="height: 100px;"></textarea>
rohitwaghchaurea1064a62016-03-03 14:00:35 +053069 </div>
70 </div>
71 </div>
72</div>
73
74<!-- no-sidebar -->
75{% endblock %}