Refactor project structure
This commit is contained in:
8
core/modules/reports/customTemplates/payslip/column.html
Normal file
8
core/modules/reports/customTemplates/payslip/column.html
Normal file
@@ -0,0 +1,8 @@
|
||||
<div class="row">
|
||||
<div class="col-xs-6">
|
||||
<b>{{field.label}}</b>
|
||||
</div>
|
||||
<div class="col-xs-6" style="text-align: right">
|
||||
{{field.value}}
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,16 @@
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<div class="">
|
||||
<h2>{{companyName}}</h2>
|
||||
|
||||
{% if field.label != "" %}
|
||||
<h3>{{field.label}}</h3>
|
||||
{% endif %}
|
||||
|
||||
{% if field.text != "" %}
|
||||
<p>{{field.text}}</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
5
core/modules/reports/customTemplates/payslip/hr.html
Normal file
5
core/modules/reports/customTemplates/payslip/hr.html
Normal file
@@ -0,0 +1,5 @@
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<hr/>
|
||||
</div>
|
||||
</div>
|
||||
8
core/modules/reports/customTemplates/payslip/logo.html
Normal file
8
core/modules/reports/customTemplates/payslip/logo.html
Normal file
@@ -0,0 +1,8 @@
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<div class="">
|
||||
<img src="{{LOGO}}" />
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
14
core/modules/reports/customTemplates/payslip/text.html
Normal file
14
core/modules/reports/customTemplates/payslip/text.html
Normal file
@@ -0,0 +1,14 @@
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<div class="">
|
||||
{% if field.label != "" %}
|
||||
<h3>{{field.label}}</h3>
|
||||
{% endif %}
|
||||
|
||||
{% if field.text != "" %}
|
||||
<p>{{field.text}}</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user