diff --git a/hesabixCore/.gitignore b/hesabixCore/.gitignore
index cc1b591..1721b50 100644
--- a/hesabixCore/.gitignore
+++ b/hesabixCore/.gitignore
@@ -6,7 +6,7 @@
/../public_html/bundles/
/../public_html/cdn/
/var/
-/templates/
+
/vendor/
/../hesabixArchive/
###< symfony/framework-bundle ###
diff --git a/hesabixCore/templates/pdf/personsDebtors.html.twig b/hesabixCore/templates/pdf/personsDebtors.html.twig
new file mode 100644
index 0000000..728e371
--- /dev/null
+++ b/hesabixCore/templates/pdf/personsDebtors.html.twig
@@ -0,0 +1,38 @@
+{% extends "pdf/base.html.twig" %}
+{% block body %}
+
+
+
+ ردیف |
+ نام و نام خانوادگی |
+ نام مستعار |
+ شرکت |
+ کشور |
+ استان |
+ شهر |
+ آدرس |
+ کد پستی |
+ تلفن |
+ موبایل |
+ مبلغ بدهی |
+
+ {% for person in persons %}
+
+ {{ loop.index }} |
+ {{ person.name }} |
+ {{ person.nikename }} |
+ {{ person.company }} |
+ {{ person.keshvar }} |
+ {{ person.ostan }} |
+ {{ person.shahr }} |
+ {{ person.address }} |
+ {{ person.postalcode }} |
+ {{ person.tel }} |
+ {{ person.mobile }} |
+ {{ person.bd | number_format }} |
+
+
+ {% endfor %}
+
+
+{% endblock %}
\ No newline at end of file
diff --git a/hesabixCore/templates/pdf/personsDepositors.html.twig b/hesabixCore/templates/pdf/personsDepositors.html.twig
new file mode 100644
index 0000000..50eb3ef
--- /dev/null
+++ b/hesabixCore/templates/pdf/personsDepositors.html.twig
@@ -0,0 +1,38 @@
+{% extends "pdf/base.html.twig" %}
+{% block body %}
+
+
+
+ ردیف |
+ نام و نام خانوادگی |
+ نام مستعار |
+ شرکت |
+ کشور |
+ استان |
+ شهر |
+ آدرس |
+ کد پستی |
+ تلفن |
+ موبایل |
+ مبلغ بستانکاری |
+
+ {% for person in persons %}
+
+ {{ loop.index }} |
+ {{ person.name }} |
+ {{ person.nikename }} |
+ {{ person.company }} |
+ {{ person.keshvar }} |
+ {{ person.ostan }} |
+ {{ person.shahr }} |
+ {{ person.address }} |
+ {{ person.postalcode }} |
+ {{ person.tel }} |
+ {{ person.mobile }} |
+ {{ person.bs | number_format }} |
+
+
+ {% endfor %}
+
+
+{% endblock %}
\ No newline at end of file