mirror of
https://github.com/frappe/books.git
synced 2024-12-22 19:09:01 +00:00
feat: display time in templates
This commit is contained in:
parent
4bad6f12b0
commit
0190f34aab
@ -31,7 +31,11 @@
|
|||||||
<!-- Invoice Details -->
|
<!-- Invoice Details -->
|
||||||
<section class="w-1/3">
|
<section class="w-1/3">
|
||||||
<h2 class="text-2xl font-semibold">{{ doc.name }}</h2>
|
<h2 class="text-2xl font-semibold">{{ doc.name }}</h2>
|
||||||
|
|
||||||
|
<div class="flex gap-2">
|
||||||
<p class="py-2 text-base">{{ doc.date }}</p>
|
<p class="py-2 text-base">{{ doc.date }}</p>
|
||||||
|
<p class="py-2 text-base">{{ doc?.time }}</p>
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<!-- Party Details -->
|
<!-- Party Details -->
|
||||||
|
@ -31,7 +31,11 @@
|
|||||||
</h3>
|
</h3>
|
||||||
<div class="w-2/3 text-gray-800">
|
<div class="w-2/3 text-gray-800">
|
||||||
<p class="font-semibold">{{ doc.name }}</p>
|
<p class="font-semibold">{{ doc.name }}</p>
|
||||||
|
|
||||||
|
<div class="flex gap-2">
|
||||||
<p>{{ doc.date }}</p>
|
<p>{{ doc.date }}</p>
|
||||||
|
<p>{{doc?.time }}</p>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -13,7 +13,11 @@
|
|||||||
<p class="font-semibold text-xl" :style="{ color: print.color }">
|
<p class="font-semibold text-xl" :style="{ color: print.color }">
|
||||||
{{ print.companyName }}
|
{{ print.companyName }}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<div class="flex gap-2">
|
||||||
<p>{{ doc.date }}</p>
|
<p>{{ doc.date }}</p>
|
||||||
|
<p>{{ doc?.time }}</p>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user