mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-03 04:09:11 +00:00
feat: appointment Letter (#20104)
* feat: appointment Letter * fix: requested changes Co-authored-by: Nabin Hait <nabinhait@gmail.com>
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
{%- from "templates/print_formats/standard_macros.html" import add_header -%}
|
||||
|
||||
<div class="text-center" style="margin-bottom: 10%;"><h3>Appointment Letter</h3></div>
|
||||
<div class ='row' style="margin-bottom: 5%;">
|
||||
<div class = "col-sm-6">
|
||||
<b>{{ doc.applicant_name }},</b>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<span style = "float: right;"><b> Date: </b>{{ doc.appointment_date }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div style="margin-bottom: 5%;">
|
||||
{{ doc.introduction }}
|
||||
</div>
|
||||
<div style="margin-bottom: 5%;">
|
||||
<ul>
|
||||
{% for content in doc.terms %}
|
||||
<li style="padding-bottom: 3%;">
|
||||
<span>
|
||||
<span><b>{{ content.title }}: </b></span> {{ content.description }}
|
||||
</span>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
<div style="margin-bottom: 5%;">
|
||||
<span>Your sincerely,</span><br>
|
||||
<span><b>For {{ doc.company }}</b></span>
|
||||
</div>
|
||||
|
||||
<div style="margin-bottom: 5%;">
|
||||
<span>{{ doc.closing_notes }}</span>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<span><b>________________</b></span><br>
|
||||
<span><b>{{ doc.applicant_name }}</b></span>
|
||||
</div>
|
||||
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"align_labels_right": 0,
|
||||
"creation": "2019-12-26 15:22:44.200332",
|
||||
"custom_format": 0,
|
||||
"default_print_language": "en",
|
||||
"disabled": 0,
|
||||
"doc_type": "Appointment Letter",
|
||||
"docstatus": 0,
|
||||
"doctype": "Print Format",
|
||||
"font": "Default",
|
||||
"idx": 0,
|
||||
"line_breaks": 0,
|
||||
"modified": "2020-01-21 17:24:16.705082",
|
||||
"modified_by": "Administrator",
|
||||
"module": "HR",
|
||||
"name": "Standard Appointment Letter",
|
||||
"owner": "Administrator",
|
||||
"print_format_builder": 0,
|
||||
"print_format_type": "Jinja",
|
||||
"raw_printing": 0,
|
||||
"show_section_headings": 0,
|
||||
"standard": "Yes"
|
||||
}
|
||||
Reference in New Issue
Block a user