- {{ label1|default:'Он же' }}
-{{ label2|default:'Стороннее лицо' }}
- Не указывать
diff --git a/project/templates/docs/parts/form_field.html b/project/templates/docs/parts/form_field.html
deleted file mode 100644
index 3b4f011..0000000
--- a/project/templates/docs/parts/form_field.html
+++ /dev/null
@@ -1,23 +0,0 @@
-{% comment %}
-field - поле
-id - id поля
-classes - css классы
-required - отметить, что поле обязательное?
-label - заголовок поля
-label_inline - вывести заголовок и поле на одной строке?
-help - подсказка по заполнению поля
-is_ajax - ajax-форма?
-no_clear_after - не добавлять очистку float после блока
-{% endcomment %}
-
-
- {% if label %}{{ label }}:{% if required %} *{% endif %}{% endif %}
- {% if label_inline %}
- {{ field }}
- {% else %}
-
{{ field }}
- {% endif %}
- {% if help %}
{{ help }}
{% endif %}
- {% if not is_ajax %}{{ field.errors }}{% endif %}
-
-{% if not no_clear_after %}{% endif %}
diff --git a/project/templates/docs/parts/form_field_client.html b/project/templates/docs/parts/form_field_client.html
deleted file mode 100644
index 9112f18..0000000
--- a/project/templates/docs/parts/form_field_client.html
+++ /dev/null
@@ -1,22 +0,0 @@
-{% comment %}
-field - поле
-required - отметить, что поле обязательное?
-label - заголовок поля (по умолчанию, `Контрагент`)
-is_ajax - ajax-форма?
-no_clear_after - не добавлять очистку float после блока
-{% endcomment %}
-
-
-
-
-{% for invoice in obj.linked_docs.Invoice %}
- {{ invoice }}
-{% endfor %}
-
-{% for akt in obj.linked_docs.AktRabot %}
- {{ akt }}
-{% endfor %}
-
-{% for nakladn in obj.linked_docs.Nakladn %}
- {{ nakladn }}
-{% endfor %}
-
-{% for faktura in obj.linked_docs.Faktura %}
- {{ faktura }}
-{% endfor %}
-
-{% endif %}
diff --git a/project/__init__.py b/src/__init__.py
similarity index 100%
rename from project/__init__.py
rename to src/__init__.py
diff --git a/project/callback/__init__.py b/src/callback/__init__.py
similarity index 100%
rename from project/callback/__init__.py
rename to src/callback/__init__.py
diff --git a/project/callback/admin.py b/src/callback/admin.py
similarity index 100%
rename from project/callback/admin.py
rename to src/callback/admin.py
diff --git a/project/callback/context_processors.py b/src/callback/context_processors.py
similarity index 100%
rename from project/callback/context_processors.py
rename to src/callback/context_processors.py
diff --git a/project/callback/forms.py b/src/callback/forms.py
similarity index 100%
rename from project/callback/forms.py
rename to src/callback/forms.py
diff --git a/project/callback/models.py b/src/callback/models.py
similarity index 100%
rename from project/callback/models.py
rename to src/callback/models.py
diff --git a/project/callback/urls.py b/src/callback/urls.py
similarity index 100%
rename from project/callback/urls.py
rename to src/callback/urls.py
diff --git a/project/callback/views.py b/src/callback/views.py
similarity index 100%
rename from project/callback/views.py
rename to src/callback/views.py
diff --git a/project/celery.py b/src/celery.py
similarity index 87%
rename from project/celery.py
rename to src/celery.py
index 1e9d489..99728aa 100644
--- a/project/celery.py
+++ b/src/celery.py
@@ -3,9 +3,9 @@ import os
from celery import Celery
# set the default Django settings module for the 'celery' program.
-os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'project.settings')
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'src.settings')
-app = Celery('project')
+app = Celery('src')
# Using a string here means the worker doesn't have to serialize
# the configuration object to child processes.
diff --git a/project/commons/__init__.py b/src/commons/__init__.py
similarity index 100%
rename from project/commons/__init__.py
rename to src/commons/__init__.py
diff --git a/project/commons/fixtures/cms.json b/src/commons/fixtures/cms.json
similarity index 100%
rename from project/commons/fixtures/cms.json
rename to src/commons/fixtures/cms.json
diff --git a/project/commons/fixtures/djangocms_text_ckeditor.json b/src/commons/fixtures/djangocms_text_ckeditor.json
similarity index 100%
rename from project/commons/fixtures/djangocms_text_ckeditor.json
rename to src/commons/fixtures/djangocms_text_ckeditor.json
diff --git a/project/commons/fixtures/sites.json b/src/commons/fixtures/sites.json
similarity index 100%
rename from project/commons/fixtures/sites.json
rename to src/commons/fixtures/sites.json
diff --git a/project/commons/forms.py b/src/commons/forms.py
similarity index 100%
rename from project/commons/forms.py
rename to src/commons/forms.py
diff --git a/project/commons/models.py b/src/commons/models.py
similarity index 100%
rename from project/commons/models.py
rename to src/commons/models.py
diff --git a/project/commons/paginator.py b/src/commons/paginator.py
similarity index 100%
rename from project/commons/paginator.py
rename to src/commons/paginator.py
diff --git a/project/commons/pdf_tools.py b/src/commons/pdf_tools.py
similarity index 100%
rename from project/commons/pdf_tools.py
rename to src/commons/pdf_tools.py
diff --git a/project/commons/templatetags/__init__.py b/src/commons/templatetags/__init__.py
similarity index 100%
rename from project/commons/templatetags/__init__.py
rename to src/commons/templatetags/__init__.py
diff --git a/project/commons/templatetags/my_tags.py b/src/commons/templatetags/my_tags.py
similarity index 100%
rename from project/commons/templatetags/my_tags.py
rename to src/commons/templatetags/my_tags.py
diff --git a/project/commons/tests.py b/src/commons/tests.py
similarity index 100%
rename from project/commons/tests.py
rename to src/commons/tests.py
diff --git a/project/commons/utils.py b/src/commons/utils.py
similarity index 100%
rename from project/commons/utils.py
rename to src/commons/utils.py
diff --git a/project/commons/views.py b/src/commons/views.py
similarity index 100%
rename from project/commons/views.py
rename to src/commons/views.py
diff --git a/project/commons/xls/__init__.py b/src/commons/xls/__init__.py
similarity index 100%
rename from project/commons/xls/__init__.py
rename to src/commons/xls/__init__.py
diff --git a/project/commons/xls/get_xlwt_style_list.py b/src/commons/xls/get_xlwt_style_list.py
similarity index 100%
rename from project/commons/xls/get_xlwt_style_list.py
rename to src/commons/xls/get_xlwt_style_list.py
diff --git a/project/commons/xls/useful_tools.py b/src/commons/xls/useful_tools.py
similarity index 100%
rename from project/commons/xls/useful_tools.py
rename to src/commons/xls/useful_tools.py
diff --git a/project/commons/xls/xls_to_response.py b/src/commons/xls/xls_to_response.py
similarity index 100%
rename from project/commons/xls/xls_to_response.py
rename to src/commons/xls/xls_to_response.py
diff --git a/project/customer/!!forms.py b/src/customer/!!forms.py
similarity index 99%
rename from project/customer/!!forms.py
rename to src/customer/!!forms.py
index e7ef9d8..25684a8 100644
--- a/project/customer/!!forms.py
+++ b/src/customer/!!forms.py
@@ -5,7 +5,7 @@ from django.utils.safestring import mark_safe
from django.conf import settings
from yandex_money.forms import PaymentForm
-from project.commons.forms import MyBaseModelForm, set_field_error
+from commons.forms import MyBaseModelForm, set_field_error
from . import consts, models
diff --git a/project/customer/__init__.py b/src/customer/__init__.py
similarity index 100%
rename from project/customer/__init__.py
rename to src/customer/__init__.py
diff --git a/project/customer/admin.py b/src/customer/admin.py
similarity index 100%
rename from project/customer/admin.py
rename to src/customer/admin.py
diff --git a/project/customer/apps.py b/src/customer/apps.py
similarity index 100%
rename from project/customer/apps.py
rename to src/customer/apps.py
diff --git a/project/customer/consts.py b/src/customer/consts.py
similarity index 100%
rename from project/customer/consts.py
rename to src/customer/consts.py
diff --git a/project/customer/context_processors.py b/src/customer/context_processors.py
similarity index 100%
rename from project/customer/context_processors.py
rename to src/customer/context_processors.py
diff --git a/project/customer/decorators.py b/src/customer/decorators.py
similarity index 100%
rename from project/customer/decorators.py
rename to src/customer/decorators.py
diff --git a/project/customer/fixtures/price.json b/src/customer/fixtures/price.json
similarity index 100%
rename from project/customer/fixtures/price.json
rename to src/customer/fixtures/price.json
diff --git a/project/customer/forms.py b/src/customer/forms.py
similarity index 100%
rename from project/customer/forms.py
rename to src/customer/forms.py
diff --git a/project/customer/managers.py b/src/customer/managers.py
similarity index 100%
rename from project/customer/managers.py
rename to src/customer/managers.py
diff --git a/project/customer/middleware.py b/src/customer/middleware.py
similarity index 100%
rename from project/customer/middleware.py
rename to src/customer/middleware.py
diff --git a/project/customer/migrations/0001_initial.py b/src/customer/migrations/0001_initial.py
similarity index 100%
rename from project/customer/migrations/0001_initial.py
rename to src/customer/migrations/0001_initial.py
diff --git a/project/customer/migrations/0002_auto__add_field_userprofilefilters_show_logo.py b/src/customer/migrations/0002_auto__add_field_userprofilefilters_show_logo.py
similarity index 100%
rename from project/customer/migrations/0002_auto__add_field_userprofilefilters_show_logo.py
rename to src/customer/migrations/0002_auto__add_field_userprofilefilters_show_logo.py
diff --git a/project/customer/migrations/0003_auto__add_field_userprofilefilters_show_address.py b/src/customer/migrations/0003_auto__add_field_userprofilefilters_show_address.py
similarity index 100%
rename from project/customer/migrations/0003_auto__add_field_userprofilefilters_show_address.py
rename to src/customer/migrations/0003_auto__add_field_userprofilefilters_show_address.py
diff --git a/project/customer/migrations/0004_auto__del_field_client_contact_icq__add_field_client_ogrn.py b/src/customer/migrations/0004_auto__del_field_client_contact_icq__add_field_client_ogrn.py
similarity index 100%
rename from project/customer/migrations/0004_auto__del_field_client_contact_icq__add_field_client_ogrn.py
rename to src/customer/migrations/0004_auto__del_field_client_contact_icq__add_field_client_ogrn.py
diff --git a/project/customer/migrations/0005_auto__add_field_bankaccount_short_name.py b/src/customer/migrations/0005_auto__add_field_bankaccount_short_name.py
similarity index 100%
rename from project/customer/migrations/0005_auto__add_field_bankaccount_short_name.py
rename to src/customer/migrations/0005_auto__add_field_bankaccount_short_name.py
diff --git a/project/customer/migrations/0006_auto__add_field_client_name_short_self__add_field_client_name_short_da.py b/src/customer/migrations/0006_auto__add_field_client_name_short_self__add_field_client_name_short_da.py
similarity index 100%
rename from project/customer/migrations/0006_auto__add_field_client_name_short_self__add_field_client_name_short_da.py
rename to src/customer/migrations/0006_auto__add_field_client_name_short_self__add_field_client_name_short_da.py
diff --git a/project/customer/migrations/__init__.py b/src/customer/migrations/__init__.py
similarity index 100%
rename from project/customer/migrations/__init__.py
rename to src/customer/migrations/__init__.py
diff --git a/project/customer/models.py b/src/customer/models.py
similarity index 99%
rename from project/customer/models.py
rename to src/customer/models.py
index b4963a4..57aa193 100644
--- a/project/customer/models.py
+++ b/src/customer/models.py
@@ -12,7 +12,7 @@ from django.core.urlresolvers import reverse
from customer import consts, managers, utils
from myauth.models import DokUser
-from project.commons.utils import only_numerics
+from commons.utils import only_numerics
PROFILE_IMAGES_UPLOAD_DIR = 'customer/profile/' # куда сохранять загруженные изображения
diff --git a/project/customer/tasks.py b/src/customer/tasks.py
similarity index 100%
rename from project/customer/tasks.py
rename to src/customer/tasks.py
diff --git a/project/customer/tests.py b/src/customer/tests.py
similarity index 100%
rename from project/customer/tests.py
rename to src/customer/tests.py
diff --git a/project/customer/urls.py b/src/customer/urls.py
similarity index 100%
rename from project/customer/urls.py
rename to src/customer/urls.py
diff --git a/project/customer/utils.py b/src/customer/utils.py
similarity index 100%
rename from project/customer/utils.py
rename to src/customer/utils.py
diff --git a/project/customer/views/__init__.py b/src/customer/views/__init__.py
similarity index 100%
rename from project/customer/views/__init__.py
rename to src/customer/views/__init__.py
diff --git a/project/customer/views/bank_accounts.py b/src/customer/views/bank_accounts.py
similarity index 98%
rename from project/customer/views/bank_accounts.py
rename to src/customer/views/bank_accounts.py
index 6f1dff3..4d50f69 100644
--- a/project/customer/views/bank_accounts.py
+++ b/src/customer/views/bank_accounts.py
@@ -4,7 +4,7 @@ from django.core.urlresolvers import reverse
from django.views.decorators.csrf import csrf_protect
from django.contrib.auth.decorators import login_required
-from project.commons.paginator import pagination, save_per_page_value
+from commons.paginator import pagination, save_per_page_value
from .. import models, forms
from ..decorators import license_required
diff --git a/project/customer/views/bank_accounts_ajax.py b/src/customer/views/bank_accounts_ajax.py
similarity index 99%
rename from project/customer/views/bank_accounts_ajax.py
rename to src/customer/views/bank_accounts_ajax.py
index 6b00c96..cb69413 100644
--- a/project/customer/views/bank_accounts_ajax.py
+++ b/src/customer/views/bank_accounts_ajax.py
@@ -8,7 +8,7 @@ from django.views.decorators.csrf import csrf_protect
from django.contrib.auth.decorators import login_required
from django.core.urlresolvers import reverse
-from project.commons.utils import dthandler
+from commons.utils import dthandler
from .. import models, forms
from ..decorators import license_required
diff --git a/project/customer/views/clients.py b/src/customer/views/clients.py
similarity index 97%
rename from project/customer/views/clients.py
rename to src/customer/views/clients.py
index 1afe40f..35702f8 100644
--- a/project/customer/views/clients.py
+++ b/src/customer/views/clients.py
@@ -3,7 +3,7 @@ from django.shortcuts import render, redirect, get_object_or_404
from django.views.decorators.csrf import csrf_protect
from django.contrib.auth.decorators import login_required
-from project.commons.paginator import pagination, save_per_page_value
+from commons.paginator import pagination, save_per_page_value
from .. import models, forms
from ..decorators import license_required
diff --git a/project/customer/views/clients_ajax.py b/src/customer/views/clients_ajax.py
similarity index 100%
rename from project/customer/views/clients_ajax.py
rename to src/customer/views/clients_ajax.py
diff --git a/project/customer/views/documents.py b/src/customer/views/documents.py
similarity index 100%
rename from project/customer/views/documents.py
rename to src/customer/views/documents.py
diff --git a/project/customer/views/license.py b/src/customer/views/license.py
similarity index 100%
rename from project/customer/views/license.py
rename to src/customer/views/license.py
diff --git a/project/customer/views/profile.py b/src/customer/views/profile.py
similarity index 99%
rename from project/customer/views/profile.py
rename to src/customer/views/profile.py
index 9ba95a1..1b526ad 100644
--- a/project/customer/views/profile.py
+++ b/src/customer/views/profile.py
@@ -17,7 +17,7 @@ from django.http import Http404, HttpResponse
# from sorl.thumbnail import get_thumbnail
from easy_thumbnails.files import get_thumbnailer
-from project.commons.pdf_tools import render_pdf_to_string, pdf_to_response
+from commons.pdf_tools import render_pdf_to_string, pdf_to_response
from customer import models, forms
from customer.decorators import license_required
diff --git a/project/customer/views/profile_ajax.py b/src/customer/views/profile_ajax.py
similarity index 100%
rename from project/customer/views/profile_ajax.py
rename to src/customer/views/profile_ajax.py
diff --git a/project/docs/__init__.py b/src/docs/__init__.py
similarity index 100%
rename from project/docs/__init__.py
rename to src/docs/__init__.py
diff --git a/project/docs/admin.py b/src/docs/admin.py
similarity index 100%
rename from project/docs/admin.py
rename to src/docs/admin.py
diff --git a/project/docs/as_xls/__init__.py b/src/docs/as_xls/__init__.py
similarity index 100%
rename from project/docs/as_xls/__init__.py
rename to src/docs/as_xls/__init__.py
diff --git a/project/docs/as_xls/render_to_xls.py b/src/docs/as_xls/render_to_xls.py
similarity index 100%
rename from project/docs/as_xls/render_to_xls.py
rename to src/docs/as_xls/render_to_xls.py
diff --git a/project/docs/autocomplete_light_registry.py b/src/docs/autocomplete_light_registry.py
similarity index 100%
rename from project/docs/autocomplete_light_registry.py
rename to src/docs/autocomplete_light_registry.py
diff --git a/project/docs/consts.py b/src/docs/consts.py
similarity index 100%
rename from project/docs/consts.py
rename to src/docs/consts.py
diff --git a/project/docs/filters.py b/src/docs/filters.py
similarity index 100%
rename from project/docs/filters.py
rename to src/docs/filters.py
diff --git a/project/docs/fixtures/country.json b/src/docs/fixtures/country.json
similarity index 100%
rename from project/docs/fixtures/country.json
rename to src/docs/fixtures/country.json
diff --git a/project/docs/fixtures/currency.json b/src/docs/fixtures/currency.json
similarity index 100%
rename from project/docs/fixtures/currency.json
rename to src/docs/fixtures/currency.json
diff --git a/project/docs/fixtures/measure.json b/src/docs/fixtures/measure.json
similarity index 100%
rename from project/docs/fixtures/measure.json
rename to src/docs/fixtures/measure.json
diff --git a/project/docs/forms/__init__.py b/src/docs/forms/__init__.py
similarity index 100%
rename from project/docs/forms/__init__.py
rename to src/docs/forms/__init__.py
diff --git a/project/docs/forms/aktrabot.py b/src/docs/forms/aktrabot.py
similarity index 97%
rename from project/docs/forms/aktrabot.py
rename to src/docs/forms/aktrabot.py
index 153f865..362b250 100644
--- a/project/docs/forms/aktrabot.py
+++ b/src/docs/forms/aktrabot.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from django import forms
-from project.commons.forms import MyBaseModelForm
+from commons.forms import MyBaseModelForm
from .base_forms import BaseModelForm
from ..models import AktRabot, AktRabotItem
diff --git a/project/docs/forms/aktsverki.py b/src/docs/forms/aktsverki.py
similarity index 97%
rename from project/docs/forms/aktsverki.py
rename to src/docs/forms/aktsverki.py
index 87e3e97..92776b9 100644
--- a/project/docs/forms/aktsverki.py
+++ b/src/docs/forms/aktsverki.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from django import forms
-from project.commons.forms import MyBaseModelForm
+from commons.forms import MyBaseModelForm
from .base_forms import BaseModelForm
from ..models import AktSverki, AktSverkiItem
diff --git a/project/docs/forms/base_forms.py b/src/docs/forms/base_forms.py
similarity index 100%
rename from project/docs/forms/base_forms.py
rename to src/docs/forms/base_forms.py
diff --git a/project/docs/forms/dover.py b/src/docs/forms/dover.py
similarity index 97%
rename from project/docs/forms/dover.py
rename to src/docs/forms/dover.py
index 7617abc..a326333 100644
--- a/project/docs/forms/dover.py
+++ b/src/docs/forms/dover.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from django import forms
-from project.commons.forms import MyBaseModelForm
+from commons.forms import MyBaseModelForm
from .base_forms import BaseModelForm
from ..models import Dover, DoverItem
diff --git a/project/docs/forms/email.py b/src/docs/forms/email.py
similarity index 100%
rename from project/docs/forms/email.py
rename to src/docs/forms/email.py
diff --git a/project/docs/forms/faktura.py b/src/docs/forms/faktura.py
similarity index 100%
rename from project/docs/forms/faktura.py
rename to src/docs/forms/faktura.py
diff --git a/project/docs/forms/invoice.py b/src/docs/forms/invoice.py
similarity index 97%
rename from project/docs/forms/invoice.py
rename to src/docs/forms/invoice.py
index a4fc44b..2e24088 100644
--- a/project/docs/forms/invoice.py
+++ b/src/docs/forms/invoice.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from django import forms
-from project.commons.forms import MyBaseModelForm
+from commons.forms import MyBaseModelForm
from docs.forms.base_forms import BaseModelForm
from docs.models import Invoice, InvoiceItem
diff --git a/project/docs/forms/nakladn.py b/src/docs/forms/nakladn.py
similarity index 97%
rename from project/docs/forms/nakladn.py
rename to src/docs/forms/nakladn.py
index 76d56fe..07971a9 100644
--- a/project/docs/forms/nakladn.py
+++ b/src/docs/forms/nakladn.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from django import forms
-from project.commons.forms import MyBaseModelForm
+from commons.forms import MyBaseModelForm
from .base_forms import BaseModelForm
from ..models import Nakladn, NakladnItem
diff --git a/project/docs/forms/platejka.py b/src/docs/forms/platejka.py
similarity index 98%
rename from project/docs/forms/platejka.py
rename to src/docs/forms/platejka.py
index 39b286f..7c22b3d 100644
--- a/project/docs/forms/platejka.py
+++ b/src/docs/forms/platejka.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from django import forms
-from project.commons.forms import set_field_error
+from commons.forms import set_field_error
from .base_forms import BaseModelForm
from ..models import Platejka
diff --git a/project/docs/migrations/0001_initial.py b/src/docs/migrations/0001_initial.py
similarity index 100%
rename from project/docs/migrations/0001_initial.py
rename to src/docs/migrations/0001_initial.py
diff --git a/project/docs/migrations/0002_auto__add_field_measure_full_name__chg_field_measure_code__chg_field_m.py b/src/docs/migrations/0002_auto__add_field_measure_full_name__chg_field_measure_code__chg_field_m.py
similarity index 100%
rename from project/docs/migrations/0002_auto__add_field_measure_full_name__chg_field_measure_code__chg_field_m.py
rename to src/docs/migrations/0002_auto__add_field_measure_full_name__chg_field_measure_code__chg_field_m.py
diff --git a/project/docs/migrations/0003_auto__add_field_currency_order.py b/src/docs/migrations/0003_auto__add_field_currency_order.py
similarity index 100%
rename from project/docs/migrations/0003_auto__add_field_currency_order.py
rename to src/docs/migrations/0003_auto__add_field_currency_order.py
diff --git a/project/docs/migrations/0004_auto__add_field_measure_order.py b/src/docs/migrations/0004_auto__add_field_measure_order.py
similarity index 100%
rename from project/docs/migrations/0004_auto__add_field_measure_order.py
rename to src/docs/migrations/0004_auto__add_field_measure_order.py
diff --git a/project/docs/migrations/0005_auto__add_field_country_order.py b/src/docs/migrations/0005_auto__add_field_country_order.py
similarity index 100%
rename from project/docs/migrations/0005_auto__add_field_country_order.py
rename to src/docs/migrations/0005_auto__add_field_country_order.py
diff --git a/project/docs/migrations/0006_auto__add_field_nakladnitem_units_kod.py b/src/docs/migrations/0006_auto__add_field_nakladnitem_units_kod.py
similarity index 100%
rename from project/docs/migrations/0006_auto__add_field_nakladnitem_units_kod.py
rename to src/docs/migrations/0006_auto__add_field_nakladnitem_units_kod.py
diff --git a/project/docs/migrations/0007_nakladnitem_fix_units.py b/src/docs/migrations/0007_nakladnitem_fix_units.py
similarity index 100%
rename from project/docs/migrations/0007_nakladnitem_fix_units.py
rename to src/docs/migrations/0007_nakladnitem_fix_units.py
diff --git a/project/docs/migrations/0008_nakladnitem_set_units_kod.py b/src/docs/migrations/0008_nakladnitem_set_units_kod.py
similarity index 100%
rename from project/docs/migrations/0008_nakladnitem_set_units_kod.py
rename to src/docs/migrations/0008_nakladnitem_set_units_kod.py
diff --git a/project/docs/migrations/__init__.py b/src/docs/migrations/__init__.py
similarity index 100%
rename from project/docs/migrations/__init__.py
rename to src/docs/migrations/__init__.py
diff --git a/project/docs/models/__init__.py b/src/docs/models/__init__.py
similarity index 100%
rename from project/docs/models/__init__.py
rename to src/docs/models/__init__.py
diff --git a/project/docs/models/aktrabot.py b/src/docs/models/aktrabot.py
similarity index 100%
rename from project/docs/models/aktrabot.py
rename to src/docs/models/aktrabot.py
diff --git a/project/docs/models/aktsverki.py b/src/docs/models/aktsverki.py
similarity index 100%
rename from project/docs/models/aktsverki.py
rename to src/docs/models/aktsverki.py
diff --git a/project/docs/models/base_models.py b/src/docs/models/base_models.py
similarity index 100%
rename from project/docs/models/base_models.py
rename to src/docs/models/base_models.py
diff --git a/project/docs/models/dover.py b/src/docs/models/dover.py
similarity index 100%
rename from project/docs/models/dover.py
rename to src/docs/models/dover.py
diff --git a/project/docs/models/faktura.py b/src/docs/models/faktura.py
similarity index 100%
rename from project/docs/models/faktura.py
rename to src/docs/models/faktura.py
diff --git a/project/docs/models/invoice.py b/src/docs/models/invoice.py
similarity index 100%
rename from project/docs/models/invoice.py
rename to src/docs/models/invoice.py
diff --git a/project/docs/models/linked_docs_mixin.py b/src/docs/models/linked_docs_mixin.py
similarity index 100%
rename from project/docs/models/linked_docs_mixin.py
rename to src/docs/models/linked_docs_mixin.py
diff --git a/project/docs/models/managers.py b/src/docs/models/managers.py
similarity index 100%
rename from project/docs/models/managers.py
rename to src/docs/models/managers.py
diff --git a/project/docs/models/mixins.py b/src/docs/models/mixins.py
similarity index 100%
rename from project/docs/models/mixins.py
rename to src/docs/models/mixins.py
diff --git a/project/docs/models/nakladn.py b/src/docs/models/nakladn.py
similarity index 100%
rename from project/docs/models/nakladn.py
rename to src/docs/models/nakladn.py
diff --git a/project/docs/models/platejka.py b/src/docs/models/platejka.py
similarity index 100%
rename from project/docs/models/platejka.py
rename to src/docs/models/platejka.py
diff --git a/project/docs/models/refs.py b/src/docs/models/refs.py
similarity index 100%
rename from project/docs/models/refs.py
rename to src/docs/models/refs.py
diff --git a/project/docs/tests.py b/src/docs/tests.py
similarity index 100%
rename from project/docs/tests.py
rename to src/docs/tests.py
diff --git a/project/docs/urls.py b/src/docs/urls.py
similarity index 100%
rename from project/docs/urls.py
rename to src/docs/urls.py
diff --git a/project/docs/utils.py b/src/docs/utils.py
similarity index 100%
rename from project/docs/utils.py
rename to src/docs/utils.py
diff --git a/project/docs/views/__init__.py b/src/docs/views/__init__.py
similarity index 100%
rename from project/docs/views/__init__.py
rename to src/docs/views/__init__.py
diff --git a/project/docs/views/ajax.py b/src/docs/views/ajax.py
similarity index 97%
rename from project/docs/views/ajax.py
rename to src/docs/views/ajax.py
index 51674bc..da1b13a 100644
--- a/project/docs/views/ajax.py
+++ b/src/docs/views/ajax.py
@@ -8,7 +8,7 @@ from django.db.models import get_model
from django.views.decorators.csrf import csrf_protect
from ..models import Invoice
-from project.customer.utils import raise_if_no_profile
+from customer.utils import raise_if_no_profile
def get_invoices(request, client_id=None):
diff --git a/project/docs/views/aktrabot.py b/src/docs/views/aktrabot.py
similarity index 100%
rename from project/docs/views/aktrabot.py
rename to src/docs/views/aktrabot.py
diff --git a/project/docs/views/aktsverki.py b/src/docs/views/aktsverki.py
similarity index 98%
rename from project/docs/views/aktsverki.py
rename to src/docs/views/aktsverki.py
index e1edc2d..29900a3 100644
--- a/project/docs/views/aktsverki.py
+++ b/src/docs/views/aktsverki.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from decimal import Decimal
-from project.customer.forms import ClientsListForm
+from customer.forms import ClientsListForm
from ..models import AktSverki, AktSverkiItem
from ..forms import AktSverkiForm, AktSverkiItemForm
diff --git a/project/docs/views/base_views.py b/src/docs/views/base_views.py
similarity index 99%
rename from project/docs/views/base_views.py
rename to src/docs/views/base_views.py
index d8db713..932f734 100644
--- a/project/docs/views/base_views.py
+++ b/src/docs/views/base_views.py
@@ -33,8 +33,8 @@ from docs.as_xls import render_xls_to_string
from docs.forms import EmailForm, InvoicesListForm
from docs import filters
-from project.customer.decorators import license_required
-from project.customer.utils import raise_if_no_profile
+from customer.decorators import license_required
+from customer.utils import raise_if_no_profile
DEBUG = getattr(settings, 'DEBUG', False)
diff --git a/project/docs/views/dover.py b/src/docs/views/dover.py
similarity index 98%
rename from project/docs/views/dover.py
rename to src/docs/views/dover.py
index 77d7177..d9e143d 100644
--- a/project/docs/views/dover.py
+++ b/src/docs/views/dover.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
import datetime
-from project.customer.forms import ClientsListForm
+from customer.forms import ClientsListForm
from ..models import Dover, DoverItem
from ..forms import DoverForm, DoverItemForm
diff --git a/project/docs/views/faktura.py b/src/docs/views/faktura.py
similarity index 100%
rename from project/docs/views/faktura.py
rename to src/docs/views/faktura.py
diff --git a/project/docs/views/invoice.py b/src/docs/views/invoice.py
similarity index 98%
rename from project/docs/views/invoice.py
rename to src/docs/views/invoice.py
index 83ed744..d801ecf 100644
--- a/project/docs/views/invoice.py
+++ b/src/docs/views/invoice.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from decimal import Decimal
-from project.customer.forms import ClientsListForm
+from customer.forms import ClientsListForm
from docs.models import Invoice, InvoiceItem
from docs.forms import InvoiceForm, InvoiceItemForm
diff --git a/project/docs/views/mixins.py b/src/docs/views/mixins.py
similarity index 100%
rename from project/docs/views/mixins.py
rename to src/docs/views/mixins.py
diff --git a/project/docs/views/nakladn.py b/src/docs/views/nakladn.py
similarity index 100%
rename from project/docs/views/nakladn.py
rename to src/docs/views/nakladn.py
diff --git a/project/docs/views/platejka.py b/src/docs/views/platejka.py
similarity index 100%
rename from project/docs/views/platejka.py
rename to src/docs/views/platejka.py
diff --git a/project/index_blocks/__init__.py b/src/index_blocks/__init__.py
similarity index 100%
rename from project/index_blocks/__init__.py
rename to src/index_blocks/__init__.py
diff --git a/project/index_blocks/cms_plugins.py b/src/index_blocks/cms_plugins.py
similarity index 98%
rename from project/index_blocks/cms_plugins.py
rename to src/index_blocks/cms_plugins.py
index 76c7b8b..3987180 100644
--- a/project/index_blocks/cms_plugins.py
+++ b/src/index_blocks/cms_plugins.py
@@ -3,7 +3,7 @@ from cms.plugin_base import CMSPluginBase
from cms.plugin_pool import plugin_pool
from models import IndexBlockPlugin, ExtendedTextBlockPlugin, ExtendedBlockPlugin, DescTextBlockPlugin
from forms import IndexBlockForm, ExtendedBlockForm, ExtendedTextBlockForm, DescBlockForm
-from project.myauth.forms import RegistrationForm
+from myauth.forms import RegistrationForm
from django.utils.translation import ugettext as _
diff --git a/project/index_blocks/forms.py b/src/index_blocks/forms.py
similarity index 100%
rename from project/index_blocks/forms.py
rename to src/index_blocks/forms.py
diff --git a/project/index_blocks/migrations/0001_initial.py b/src/index_blocks/migrations/0001_initial.py
similarity index 100%
rename from project/index_blocks/migrations/0001_initial.py
rename to src/index_blocks/migrations/0001_initial.py
diff --git a/project/index_blocks/migrations/0002_auto__add_field_indexblockplugin_title__chg_field_indexblockplugin_des.py b/src/index_blocks/migrations/0002_auto__add_field_indexblockplugin_title__chg_field_indexblockplugin_des.py
similarity index 100%
rename from project/index_blocks/migrations/0002_auto__add_field_indexblockplugin_title__chg_field_indexblockplugin_des.py
rename to src/index_blocks/migrations/0002_auto__add_field_indexblockplugin_title__chg_field_indexblockplugin_des.py
diff --git a/project/index_blocks/migrations/0003_auto__add_extendedblockplugin.py b/src/index_blocks/migrations/0003_auto__add_extendedblockplugin.py
similarity index 100%
rename from project/index_blocks/migrations/0003_auto__add_extendedblockplugin.py
rename to src/index_blocks/migrations/0003_auto__add_extendedblockplugin.py
diff --git a/project/index_blocks/migrations/0004_auto__add_extendedtextblockplugin.py b/src/index_blocks/migrations/0004_auto__add_extendedtextblockplugin.py
similarity index 100%
rename from project/index_blocks/migrations/0004_auto__add_extendedtextblockplugin.py
rename to src/index_blocks/migrations/0004_auto__add_extendedtextblockplugin.py
diff --git a/project/index_blocks/migrations/0005_auto__add_field_extendedtextblockplugin_order__chg_field_extendedtextb.py b/src/index_blocks/migrations/0005_auto__add_field_extendedtextblockplugin_order__chg_field_extendedtextb.py
similarity index 100%
rename from project/index_blocks/migrations/0005_auto__add_field_extendedtextblockplugin_order__chg_field_extendedtextb.py
rename to src/index_blocks/migrations/0005_auto__add_field_extendedtextblockplugin_order__chg_field_extendedtextb.py
diff --git a/project/index_blocks/migrations/0006_auto__add_desctextblockplugin.py b/src/index_blocks/migrations/0006_auto__add_desctextblockplugin.py
similarity index 100%
rename from project/index_blocks/migrations/0006_auto__add_desctextblockplugin.py
rename to src/index_blocks/migrations/0006_auto__add_desctextblockplugin.py
diff --git a/project/index_blocks/migrations/__init__.py b/src/index_blocks/migrations/__init__.py
similarity index 100%
rename from project/index_blocks/migrations/__init__.py
rename to src/index_blocks/migrations/__init__.py
diff --git a/project/index_blocks/models.py b/src/index_blocks/models.py
similarity index 100%
rename from project/index_blocks/models.py
rename to src/index_blocks/models.py
diff --git a/project/index_blocks/templates/desc_block.html b/src/index_blocks/templates/desc_block.html
similarity index 100%
rename from project/index_blocks/templates/desc_block.html
rename to src/index_blocks/templates/desc_block.html
diff --git a/project/index_blocks/templates/extended_block.html b/src/index_blocks/templates/extended_block.html
similarity index 100%
rename from project/index_blocks/templates/extended_block.html
rename to src/index_blocks/templates/extended_block.html
diff --git a/project/index_blocks/templates/extended_text_block.html b/src/index_blocks/templates/extended_text_block.html
similarity index 100%
rename from project/index_blocks/templates/extended_text_block.html
rename to src/index_blocks/templates/extended_text_block.html
diff --git a/project/index_blocks/templates/index_block.html b/src/index_blocks/templates/index_block.html
similarity index 100%
rename from project/index_blocks/templates/index_block.html
rename to src/index_blocks/templates/index_block.html
diff --git a/project/index_blocks/templates/reg_form.html b/src/index_blocks/templates/reg_form.html
similarity index 100%
rename from project/index_blocks/templates/reg_form.html
rename to src/index_blocks/templates/reg_form.html
diff --git a/project/index_blocks/templates/slideshow_block.html b/src/index_blocks/templates/slideshow_block.html
similarity index 100%
rename from project/index_blocks/templates/slideshow_block.html
rename to src/index_blocks/templates/slideshow_block.html
diff --git a/project/index_blocks/tests.py b/src/index_blocks/tests.py
similarity index 100%
rename from project/index_blocks/tests.py
rename to src/index_blocks/tests.py
diff --git a/project/index_blocks/views.py b/src/index_blocks/views.py
similarity index 100%
rename from project/index_blocks/views.py
rename to src/index_blocks/views.py
diff --git a/project/local_settings.py.dev-example b/src/local_settings.py.dev-example
similarity index 100%
rename from project/local_settings.py.dev-example
rename to src/local_settings.py.dev-example
diff --git a/project/local_settings.py.prod-example b/src/local_settings.py.prod-example
similarity index 100%
rename from project/local_settings.py.prod-example
rename to src/local_settings.py.prod-example
diff --git a/project/local_settings.py.skeleton b/src/local_settings.py.skeleton
similarity index 100%
rename from project/local_settings.py.skeleton
rename to src/local_settings.py.skeleton
diff --git a/project/myauth/__init__.py b/src/myauth/__init__.py
similarity index 100%
rename from project/myauth/__init__.py
rename to src/myauth/__init__.py
diff --git a/project/myauth/admin.py b/src/myauth/admin.py
similarity index 100%
rename from project/myauth/admin.py
rename to src/myauth/admin.py
diff --git a/project/myauth/apps.py b/src/myauth/apps.py
similarity index 100%
rename from project/myauth/apps.py
rename to src/myauth/apps.py
diff --git a/project/myauth/emails.py b/src/myauth/emails.py
similarity index 100%
rename from project/myauth/emails.py
rename to src/myauth/emails.py
diff --git a/project/myauth/fixtures/myauth.json b/src/myauth/fixtures/myauth.json
similarity index 100%
rename from project/myauth/fixtures/myauth.json
rename to src/myauth/fixtures/myauth.json
diff --git a/project/myauth/forms.py b/src/myauth/forms.py
similarity index 100%
rename from project/myauth/forms.py
rename to src/myauth/forms.py
diff --git a/project/myauth/managers.py b/src/myauth/managers.py
similarity index 100%
rename from project/myauth/managers.py
rename to src/myauth/managers.py
diff --git a/project/myauth/models.py b/src/myauth/models.py
similarity index 100%
rename from project/myauth/models.py
rename to src/myauth/models.py
diff --git a/project/myauth/tasks.py b/src/myauth/tasks.py
similarity index 100%
rename from project/myauth/tasks.py
rename to src/myauth/tasks.py
diff --git a/project/myauth/tests.py b/src/myauth/tests.py
similarity index 100%
rename from project/myauth/tests.py
rename to src/myauth/tests.py
diff --git a/project/myauth/urls.py b/src/myauth/urls.py
similarity index 100%
rename from project/myauth/urls.py
rename to src/myauth/urls.py
diff --git a/project/myauth/views.py b/src/myauth/views.py
similarity index 100%
rename from project/myauth/views.py
rename to src/myauth/views.py
diff --git a/project/pages/__init__.py b/src/pages/__init__.py
similarity index 100%
rename from project/pages/__init__.py
rename to src/pages/__init__.py
diff --git a/project/pages/models.py b/src/pages/models.py
similarity index 100%
rename from project/pages/models.py
rename to src/pages/models.py
diff --git a/project/pages/tests.py b/src/pages/tests.py
similarity index 100%
rename from project/pages/tests.py
rename to src/pages/tests.py
diff --git a/project/pages/views.py b/src/pages/views.py
similarity index 100%
rename from project/pages/views.py
rename to src/pages/views.py
diff --git a/project/pdf_fonts/arial.ttf b/src/pdf_fonts/arial.ttf
similarity index 100%
rename from project/pdf_fonts/arial.ttf
rename to src/pdf_fonts/arial.ttf
diff --git a/project/pdf_fonts/arialbd.ttf b/src/pdf_fonts/arialbd.ttf
similarity index 100%
rename from project/pdf_fonts/arialbd.ttf
rename to src/pdf_fonts/arialbd.ttf
diff --git a/project/settings.py b/src/settings.py
similarity index 97%
rename from project/settings.py
rename to src/settings.py
index 18e2387..5c49448 100644
--- a/project/settings.py
+++ b/src/settings.py
@@ -15,7 +15,7 @@ path = lambda *xs: os.path.abspath(os.path.join(os.path.dirname(__file__), *xs))
sys.path.insert(1, path('..'))
sys.path.insert(1, path('.'))
-sys.path.insert(1, path('project'))
+sys.path.insert(1, path('src'))
DEBUG = False
@@ -107,7 +107,7 @@ MIDDLEWARE_CLASSES = (
'djangocms_ckeditor_filer.middleware.ThumbnailMiddleware',
# my
- 'project.customer.middleware.ProfileMiddleware',
+ 'src.customer.middleware.ProfileMiddleware',
)
# CHECK
@@ -161,10 +161,10 @@ TEMPLATE_DIRS = (
)
-ROOT_URLCONF = 'project.urls'
+ROOT_URLCONF = 'src.urls'
# Python dotted path to the WSGI application used by Django's runserver.
-WSGI_APPLICATION = 'project.wsgi.application'
+WSGI_APPLICATION = 'src.wsgi.application'
INSTALLED_APPS = (
@@ -300,7 +300,7 @@ CALLBACK_SETTINGS = {
CELERYBEAT_SCHEDULE = {
'check-license': {
- 'task': 'project.customer.tasks.check_license',
+ 'task': 'src.customer.tasks.check_license',
'schedule': timedelta(days=1),
},
}
@@ -351,7 +351,7 @@ YANDEX_MONEY_PAYMENT_URL = 'https://money.yandex.ru/eshop.xml'
YANDEX_MONEY_MAIL_ADMINS_ON_PAYMENT_ERROR = True
try:
- from project.local_settings import *
+ from src.local_settings import *
except ImportError:
pass
diff --git a/project/static/PD.pdf b/src/static/PD.pdf
similarity index 100%
rename from project/static/PD.pdf
rename to src/static/PD.pdf
diff --git a/project/static/ckeditor/plugins/filerimage/dialogs/filerImageDialog.js b/src/static/ckeditor/plugins/filerimage/dialogs/filerImageDialog.js
similarity index 100%
rename from project/static/ckeditor/plugins/filerimage/dialogs/filerImageDialog.js
rename to src/static/ckeditor/plugins/filerimage/dialogs/filerImageDialog.js
diff --git a/project/static/ckeditor/plugins/filerimage/icons/filerimage.png b/src/static/ckeditor/plugins/filerimage/icons/filerimage.png
similarity index 100%
rename from project/static/ckeditor/plugins/filerimage/icons/filerimage.png
rename to src/static/ckeditor/plugins/filerimage/icons/filerimage.png
diff --git a/project/static/ckeditor/plugins/filerimage/plugin.js b/src/static/ckeditor/plugins/filerimage/plugin.js
similarity index 100%
rename from project/static/ckeditor/plugins/filerimage/plugin.js
rename to src/static/ckeditor/plugins/filerimage/plugin.js
diff --git a/project/static/css/custom_admin.css b/src/static/css/custom_admin.css
similarity index 100%
rename from project/static/css/custom_admin.css
rename to src/static/css/custom_admin.css
diff --git a/project/static/css/style.css b/src/static/css/style.css
similarity index 100%
rename from project/static/css/style.css
rename to src/static/css/style.css
diff --git a/project/static/css/suggestions.css b/src/static/css/suggestions.css
similarity index 100%
rename from project/static/css/suggestions.css
rename to src/static/css/suggestions.css
diff --git a/project/static/css/ui-lightness/images/animated-overlay.gif b/src/static/css/ui-lightness/images/animated-overlay.gif
similarity index 100%
rename from project/static/css/ui-lightness/images/animated-overlay.gif
rename to src/static/css/ui-lightness/images/animated-overlay.gif
diff --git a/project/static/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png b/src/static/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png
similarity index 100%
rename from project/static/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png
rename to src/static/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png
diff --git a/project/static/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png b/src/static/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png
similarity index 100%
rename from project/static/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png
rename to src/static/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png
diff --git a/project/static/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png b/src/static/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png
similarity index 100%
rename from project/static/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png
rename to src/static/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png
diff --git a/project/static/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png b/src/static/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png
similarity index 100%
rename from project/static/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png
rename to src/static/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png
diff --git a/project/static/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png b/src/static/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png
similarity index 100%
rename from project/static/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png
rename to src/static/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png
diff --git a/project/static/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png b/src/static/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png
similarity index 100%
rename from project/static/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png
rename to src/static/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png
diff --git a/project/static/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png b/src/static/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png
similarity index 100%
rename from project/static/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png
rename to src/static/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png
diff --git a/project/static/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png b/src/static/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
similarity index 100%
rename from project/static/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
rename to src/static/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
diff --git a/project/static/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png b/src/static/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
similarity index 100%
rename from project/static/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
rename to src/static/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
diff --git a/project/static/css/ui-lightness/images/ui-icons_222222_256x240.png b/src/static/css/ui-lightness/images/ui-icons_222222_256x240.png
similarity index 100%
rename from project/static/css/ui-lightness/images/ui-icons_222222_256x240.png
rename to src/static/css/ui-lightness/images/ui-icons_222222_256x240.png
diff --git a/project/static/css/ui-lightness/images/ui-icons_228ef1_256x240.png b/src/static/css/ui-lightness/images/ui-icons_228ef1_256x240.png
similarity index 100%
rename from project/static/css/ui-lightness/images/ui-icons_228ef1_256x240.png
rename to src/static/css/ui-lightness/images/ui-icons_228ef1_256x240.png
diff --git a/project/static/css/ui-lightness/images/ui-icons_ef8c08_256x240.png b/src/static/css/ui-lightness/images/ui-icons_ef8c08_256x240.png
similarity index 100%
rename from project/static/css/ui-lightness/images/ui-icons_ef8c08_256x240.png
rename to src/static/css/ui-lightness/images/ui-icons_ef8c08_256x240.png
diff --git a/project/static/css/ui-lightness/images/ui-icons_ffd27a_256x240.png b/src/static/css/ui-lightness/images/ui-icons_ffd27a_256x240.png
similarity index 100%
rename from project/static/css/ui-lightness/images/ui-icons_ffd27a_256x240.png
rename to src/static/css/ui-lightness/images/ui-icons_ffd27a_256x240.png
diff --git a/project/static/css/ui-lightness/images/ui-icons_ffffff_256x240.png b/src/static/css/ui-lightness/images/ui-icons_ffffff_256x240.png
similarity index 100%
rename from project/static/css/ui-lightness/images/ui-icons_ffffff_256x240.png
rename to src/static/css/ui-lightness/images/ui-icons_ffffff_256x240.png
diff --git a/project/static/css/ui-lightness/jquery-ui-1.10.3.custom.css b/src/static/css/ui-lightness/jquery-ui-1.10.3.custom.css
similarity index 100%
rename from project/static/css/ui-lightness/jquery-ui-1.10.3.custom.css
rename to src/static/css/ui-lightness/jquery-ui-1.10.3.custom.css
diff --git a/project/static/css/ui-lightness/jquery-ui-1.10.3.custom.min.css b/src/static/css/ui-lightness/jquery-ui-1.10.3.custom.min.css
similarity index 100%
rename from project/static/css/ui-lightness/jquery-ui-1.10.3.custom.min.css
rename to src/static/css/ui-lightness/jquery-ui-1.10.3.custom.min.css
diff --git a/project/static/dogovor.pdf b/src/static/dogovor.pdf
similarity index 100%
rename from project/static/dogovor.pdf
rename to src/static/dogovor.pdf
diff --git a/project/static/favicon.ico b/src/static/favicon.ico
similarity index 100%
rename from project/static/favicon.ico
rename to src/static/favicon.ico
diff --git a/project/static/fonts/261413575-a_AvanteLt-DemiBold.eot b/src/static/fonts/261413575-a_AvanteLt-DemiBold.eot
similarity index 100%
rename from project/static/fonts/261413575-a_AvanteLt-DemiBold.eot
rename to src/static/fonts/261413575-a_AvanteLt-DemiBold.eot
diff --git a/project/static/fonts/261413575-a_AvanteLt-DemiBold.html b/src/static/fonts/261413575-a_AvanteLt-DemiBold.html
similarity index 100%
rename from project/static/fonts/261413575-a_AvanteLt-DemiBold.html
rename to src/static/fonts/261413575-a_AvanteLt-DemiBold.html
diff --git a/project/static/fonts/261413575-a_AvanteLt-DemiBold.svg b/src/static/fonts/261413575-a_AvanteLt-DemiBold.svg
similarity index 100%
rename from project/static/fonts/261413575-a_AvanteLt-DemiBold.svg
rename to src/static/fonts/261413575-a_AvanteLt-DemiBold.svg
diff --git a/project/static/fonts/261413575-a_AvanteLt-DemiBold.ttf b/src/static/fonts/261413575-a_AvanteLt-DemiBold.ttf
similarity index 100%
rename from project/static/fonts/261413575-a_AvanteLt-DemiBold.ttf
rename to src/static/fonts/261413575-a_AvanteLt-DemiBold.ttf
diff --git a/project/static/fonts/261413575-a_AvanteLt-DemiBold.woff b/src/static/fonts/261413575-a_AvanteLt-DemiBold.woff
similarity index 100%
rename from project/static/fonts/261413575-a_AvanteLt-DemiBold.woff
rename to src/static/fonts/261413575-a_AvanteLt-DemiBold.woff
diff --git a/project/static/fonts/332733155-a_AvanteLt-Light.eot b/src/static/fonts/332733155-a_AvanteLt-Light.eot
similarity index 100%
rename from project/static/fonts/332733155-a_AvanteLt-Light.eot
rename to src/static/fonts/332733155-a_AvanteLt-Light.eot
diff --git a/project/static/fonts/332733155-a_AvanteLt-Light.html b/src/static/fonts/332733155-a_AvanteLt-Light.html
similarity index 100%
rename from project/static/fonts/332733155-a_AvanteLt-Light.html
rename to src/static/fonts/332733155-a_AvanteLt-Light.html
diff --git a/project/static/fonts/332733155-a_AvanteLt-Light.svg b/src/static/fonts/332733155-a_AvanteLt-Light.svg
similarity index 100%
rename from project/static/fonts/332733155-a_AvanteLt-Light.svg
rename to src/static/fonts/332733155-a_AvanteLt-Light.svg
diff --git a/project/static/fonts/332733155-a_AvanteLt-Light.ttf b/src/static/fonts/332733155-a_AvanteLt-Light.ttf
similarity index 100%
rename from project/static/fonts/332733155-a_AvanteLt-Light.ttf
rename to src/static/fonts/332733155-a_AvanteLt-Light.ttf
diff --git a/project/static/fonts/332733155-a_AvanteLt-Light.woff b/src/static/fonts/332733155-a_AvanteLt-Light.woff
similarity index 100%
rename from project/static/fonts/332733155-a_AvanteLt-Light.woff
rename to src/static/fonts/332733155-a_AvanteLt-Light.woff
diff --git a/project/static/fonts/MyriadPro-Light.eot b/src/static/fonts/MyriadPro-Light.eot
similarity index 100%
rename from project/static/fonts/MyriadPro-Light.eot
rename to src/static/fonts/MyriadPro-Light.eot
diff --git a/project/static/fonts/MyriadPro-Light.otf b/src/static/fonts/MyriadPro-Light.otf
similarity index 100%
rename from project/static/fonts/MyriadPro-Light.otf
rename to src/static/fonts/MyriadPro-Light.otf
diff --git a/project/static/fonts/MyriadPro-Light.svg b/src/static/fonts/MyriadPro-Light.svg
similarity index 100%
rename from project/static/fonts/MyriadPro-Light.svg
rename to src/static/fonts/MyriadPro-Light.svg
diff --git a/project/static/fonts/MyriadPro-Light.ttf b/src/static/fonts/MyriadPro-Light.ttf
similarity index 100%
rename from project/static/fonts/MyriadPro-Light.ttf
rename to src/static/fonts/MyriadPro-Light.ttf
diff --git a/project/static/fonts/MyriadPro-Light.woff b/src/static/fonts/MyriadPro-Light.woff
similarity index 100%
rename from project/static/fonts/MyriadPro-Light.woff
rename to src/static/fonts/MyriadPro-Light.woff
diff --git a/project/static/fonts/myriadpro-cond.eot b/src/static/fonts/myriadpro-cond.eot
similarity index 100%
rename from project/static/fonts/myriadpro-cond.eot
rename to src/static/fonts/myriadpro-cond.eot
diff --git a/project/static/fonts/myriadpro-cond.svg b/src/static/fonts/myriadpro-cond.svg
similarity index 100%
rename from project/static/fonts/myriadpro-cond.svg
rename to src/static/fonts/myriadpro-cond.svg
diff --git a/project/static/fonts/myriadpro-cond.ttf b/src/static/fonts/myriadpro-cond.ttf
similarity index 100%
rename from project/static/fonts/myriadpro-cond.ttf
rename to src/static/fonts/myriadpro-cond.ttf
diff --git a/project/static/fonts/myriadpro-cond.woff b/src/static/fonts/myriadpro-cond.woff
similarity index 100%
rename from project/static/fonts/myriadpro-cond.woff
rename to src/static/fonts/myriadpro-cond.woff
diff --git a/project/static/fonts/myriadpro-regular.css b/src/static/fonts/myriadpro-regular.css
similarity index 100%
rename from project/static/fonts/myriadpro-regular.css
rename to src/static/fonts/myriadpro-regular.css
diff --git a/project/static/fonts/myriadpro-regular.eot b/src/static/fonts/myriadpro-regular.eot
similarity index 100%
rename from project/static/fonts/myriadpro-regular.eot
rename to src/static/fonts/myriadpro-regular.eot
diff --git a/project/static/fonts/myriadpro-regular.svg b/src/static/fonts/myriadpro-regular.svg
similarity index 100%
rename from project/static/fonts/myriadpro-regular.svg
rename to src/static/fonts/myriadpro-regular.svg
diff --git a/project/static/fonts/myriadpro-regular.ttf b/src/static/fonts/myriadpro-regular.ttf
similarity index 100%
rename from project/static/fonts/myriadpro-regular.ttf
rename to src/static/fonts/myriadpro-regular.ttf
diff --git a/project/static/fonts/myriadpro-regular.woff b/src/static/fonts/myriadpro-regular.woff
similarity index 100%
rename from project/static/fonts/myriadpro-regular.woff
rename to src/static/fonts/myriadpro-regular.woff
diff --git a/project/static/img/add-new.png b/src/static/img/add-new.png
similarity index 100%
rename from project/static/img/add-new.png
rename to src/static/img/add-new.png
diff --git a/project/static/img/ajax-loader.gif b/src/static/img/ajax-loader.gif
similarity index 100%
rename from project/static/img/ajax-loader.gif
rename to src/static/img/ajax-loader.gif
diff --git a/project/static/img/alfa.svg b/src/static/img/alfa.svg
similarity index 100%
rename from project/static/img/alfa.svg
rename to src/static/img/alfa.svg
diff --git a/project/static/img/asc.png b/src/static/img/asc.png
similarity index 100%
rename from project/static/img/asc.png
rename to src/static/img/asc.png
diff --git a/project/static/img/beel.svg b/src/static/img/beel.svg
similarity index 100%
rename from project/static/img/beel.svg
rename to src/static/img/beel.svg
diff --git a/project/static/img/bg.png b/src/static/img/bg.png
similarity index 100%
rename from project/static/img/bg.png
rename to src/static/img/bg.png
diff --git a/project/static/img/black_arrow.png b/src/static/img/black_arrow.png
similarity index 100%
rename from project/static/img/black_arrow.png
rename to src/static/img/black_arrow.png
diff --git a/project/static/img/close.png b/src/static/img/close.png
similarity index 100%
rename from project/static/img/close.png
rename to src/static/img/close.png
diff --git a/project/static/img/comepay.svg b/src/static/img/comepay.svg
similarity index 100%
rename from project/static/img/comepay.svg
rename to src/static/img/comepay.svg
diff --git a/project/static/img/darker-bg.png b/src/static/img/darker-bg.png
similarity index 100%
rename from project/static/img/darker-bg.png
rename to src/static/img/darker-bg.png
diff --git a/project/static/img/desc.png b/src/static/img/desc.png
similarity index 100%
rename from project/static/img/desc.png
rename to src/static/img/desc.png
diff --git a/project/static/img/envelope.png b/src/static/img/envelope.png
similarity index 100%
rename from project/static/img/envelope.png
rename to src/static/img/envelope.png
diff --git a/project/static/img/euroset.svg b/src/static/img/euroset.svg
similarity index 100%
rename from project/static/img/euroset.svg
rename to src/static/img/euroset.svg
diff --git a/project/static/img/footer-bg.jpg b/src/static/img/footer-bg.jpg
similarity index 100%
rename from project/static/img/footer-bg.jpg
rename to src/static/img/footer-bg.jpg
diff --git a/project/static/img/glavbuh_sign.png b/src/static/img/glavbuh_sign.png
similarity index 100%
rename from project/static/img/glavbuh_sign.png
rename to src/static/img/glavbuh_sign.png
diff --git a/project/static/img/gotopay-hover.png b/src/static/img/gotopay-hover.png
similarity index 100%
rename from project/static/img/gotopay-hover.png
rename to src/static/img/gotopay-hover.png
diff --git a/project/static/img/gotopay.png b/src/static/img/gotopay.png
similarity index 100%
rename from project/static/img/gotopay.png
rename to src/static/img/gotopay.png
diff --git a/project/static/img/icon-add.gif b/src/static/img/icon-add.gif
similarity index 100%
rename from project/static/img/icon-add.gif
rename to src/static/img/icon-add.gif
diff --git a/project/static/img/icon-add.png b/src/static/img/icon-add.png
similarity index 100%
rename from project/static/img/icon-add.png
rename to src/static/img/icon-add.png
diff --git a/project/static/img/icon-alert.gif b/src/static/img/icon-alert.gif
similarity index 100%
rename from project/static/img/icon-alert.gif
rename to src/static/img/icon-alert.gif
diff --git a/project/static/img/icon-calendar.gif b/src/static/img/icon-calendar.gif
similarity index 100%
rename from project/static/img/icon-calendar.gif
rename to src/static/img/icon-calendar.gif
diff --git a/project/static/img/icon-calendar.png b/src/static/img/icon-calendar.png
similarity index 100%
rename from project/static/img/icon-calendar.png
rename to src/static/img/icon-calendar.png
diff --git a/project/static/img/icon-delete.gif b/src/static/img/icon-delete.gif
similarity index 100%
rename from project/static/img/icon-delete.gif
rename to src/static/img/icon-delete.gif
diff --git a/project/static/img/icon-delete.png b/src/static/img/icon-delete.png
similarity index 100%
rename from project/static/img/icon-delete.png
rename to src/static/img/icon-delete.png
diff --git a/project/static/img/icon-directory.png b/src/static/img/icon-directory.png
similarity index 100%
rename from project/static/img/icon-directory.png
rename to src/static/img/icon-directory.png
diff --git a/project/static/img/icon-edit.gif b/src/static/img/icon-edit.gif
similarity index 100%
rename from project/static/img/icon-edit.gif
rename to src/static/img/icon-edit.gif
diff --git a/project/static/img/icon-edit.png b/src/static/img/icon-edit.png
similarity index 100%
rename from project/static/img/icon-edit.png
rename to src/static/img/icon-edit.png
diff --git a/project/static/img/icon-email.gif b/src/static/img/icon-email.gif
similarity index 100%
rename from project/static/img/icon-email.gif
rename to src/static/img/icon-email.gif
diff --git a/project/static/img/icon-error.gif b/src/static/img/icon-error.gif
similarity index 100%
rename from project/static/img/icon-error.gif
rename to src/static/img/icon-error.gif
diff --git a/project/static/img/icon-excel.gif b/src/static/img/icon-excel.gif
similarity index 100%
rename from project/static/img/icon-excel.gif
rename to src/static/img/icon-excel.gif
diff --git a/project/static/img/icon-pdf.gif b/src/static/img/icon-pdf.gif
similarity index 100%
rename from project/static/img/icon-pdf.gif
rename to src/static/img/icon-pdf.gif
diff --git a/project/static/img/icon-success.gif b/src/static/img/icon-success.gif
similarity index 100%
rename from project/static/img/icon-success.gif
rename to src/static/img/icon-success.gif
diff --git a/project/static/img/index-banner.png b/src/static/img/index-banner.png
similarity index 100%
rename from project/static/img/index-banner.png
rename to src/static/img/index-banner.png
diff --git a/project/static/img/index-promo-1.png b/src/static/img/index-promo-1.png
similarity index 100%
rename from project/static/img/index-promo-1.png
rename to src/static/img/index-promo-1.png
diff --git a/project/static/img/index-promo-2.png b/src/static/img/index-promo-2.png
similarity index 100%
rename from project/static/img/index-promo-2.png
rename to src/static/img/index-promo-2.png
diff --git a/project/static/img/index-promo-3.png b/src/static/img/index-promo-3.png
similarity index 100%
rename from project/static/img/index-promo-3.png
rename to src/static/img/index-promo-3.png
diff --git a/project/static/img/index-promo-bg.jpg b/src/static/img/index-promo-bg.jpg
similarity index 100%
rename from project/static/img/index-promo-bg.jpg
rename to src/static/img/index-promo-bg.jpg
diff --git a/project/static/img/index-yellow-bg.jpg b/src/static/img/index-yellow-bg.jpg
similarity index 100%
rename from project/static/img/index-yellow-bg.jpg
rename to src/static/img/index-yellow-bg.jpg
diff --git a/project/static/img/lamp-off.png b/src/static/img/lamp-off.png
similarity index 100%
rename from project/static/img/lamp-off.png
rename to src/static/img/lamp-off.png
diff --git a/project/static/img/lamp.png b/src/static/img/lamp.png
similarity index 100%
rename from project/static/img/lamp.png
rename to src/static/img/lamp.png
diff --git a/project/static/img/left-arrow.gif b/src/static/img/left-arrow.gif
similarity index 100%
rename from project/static/img/left-arrow.gif
rename to src/static/img/left-arrow.gif
diff --git a/project/static/img/left-arrow.png b/src/static/img/left-arrow.png
similarity index 100%
rename from project/static/img/left-arrow.png
rename to src/static/img/left-arrow.png
diff --git a/project/static/img/login-black.png b/src/static/img/login-black.png
similarity index 100%
rename from project/static/img/login-black.png
rename to src/static/img/login-black.png
diff --git a/project/static/img/login-yellow.png b/src/static/img/login-yellow.png
similarity index 100%
rename from project/static/img/login-yellow.png
rename to src/static/img/login-yellow.png
diff --git a/project/static/img/login.png b/src/static/img/login.png
similarity index 100%
rename from project/static/img/login.png
rename to src/static/img/login.png
diff --git a/project/static/img/logo.png b/src/static/img/logo.png
similarity index 100%
rename from project/static/img/logo.png
rename to src/static/img/logo.png
diff --git a/project/static/img/maestro.svg b/src/static/img/maestro.svg
similarity index 100%
rename from project/static/img/maestro.svg
rename to src/static/img/maestro.svg
diff --git a/project/static/img/man.png b/src/static/img/man.png
similarity index 100%
rename from project/static/img/man.png
rename to src/static/img/man.png
diff --git a/project/static/img/mastercard.svg b/src/static/img/mastercard.svg
similarity index 100%
rename from project/static/img/mastercard.svg
rename to src/static/img/mastercard.svg
diff --git a/project/static/img/masterpass.svg b/src/static/img/masterpass.svg
similarity index 100%
rename from project/static/img/masterpass.svg
rename to src/static/img/masterpass.svg
diff --git a/project/static/img/megafon.svg b/src/static/img/megafon.svg
similarity index 100%
rename from project/static/img/megafon.svg
rename to src/static/img/megafon.svg
diff --git a/project/static/img/menu-selected.png b/src/static/img/menu-selected.png
similarity index 100%
rename from project/static/img/menu-selected.png
rename to src/static/img/menu-selected.png
diff --git a/project/static/img/menu-selected2.png b/src/static/img/menu-selected2.png
similarity index 100%
rename from project/static/img/menu-selected2.png
rename to src/static/img/menu-selected2.png
diff --git a/project/static/img/mir.svg b/src/static/img/mir.svg
similarity index 100%
rename from project/static/img/mir.svg
rename to src/static/img/mir.svg
diff --git a/project/static/img/mts.svg b/src/static/img/mts.svg
similarity index 100%
rename from project/static/img/mts.svg
rename to src/static/img/mts.svg
diff --git a/project/static/img/nosort.png b/src/static/img/nosort.png
similarity index 100%
rename from project/static/img/nosort.png
rename to src/static/img/nosort.png
diff --git a/project/static/img/pencil.png b/src/static/img/pencil.png
similarity index 100%
rename from project/static/img/pencil.png
rename to src/static/img/pencil.png
diff --git a/project/static/img/popup-cabinet.png b/src/static/img/popup-cabinet.png
similarity index 100%
rename from project/static/img/popup-cabinet.png
rename to src/static/img/popup-cabinet.png
diff --git a/project/static/img/popup-cart.png b/src/static/img/popup-cart.png
similarity index 100%
rename from project/static/img/popup-cart.png
rename to src/static/img/popup-cart.png
diff --git a/project/static/img/popup-clock.png b/src/static/img/popup-clock.png
similarity index 100%
rename from project/static/img/popup-clock.png
rename to src/static/img/popup-clock.png
diff --git a/project/static/img/popup-link.png b/src/static/img/popup-link.png
similarity index 100%
rename from project/static/img/popup-link.png
rename to src/static/img/popup-link.png
diff --git a/project/static/img/popup-list.png b/src/static/img/popup-list.png
similarity index 100%
rename from project/static/img/popup-list.png
rename to src/static/img/popup-list.png
diff --git a/project/static/img/popup-settings.png b/src/static/img/popup-settings.png
similarity index 100%
rename from project/static/img/popup-settings.png
rename to src/static/img/popup-settings.png
diff --git a/project/static/img/popup-trash.png b/src/static/img/popup-trash.png
similarity index 100%
rename from project/static/img/popup-trash.png
rename to src/static/img/popup-trash.png
diff --git a/project/static/img/printer.png b/src/static/img/printer.png
similarity index 100%
rename from project/static/img/printer.png
rename to src/static/img/printer.png
diff --git a/project/static/img/psb.svg b/src/static/img/psb.svg
similarity index 100%
rename from project/static/img/psb.svg
rename to src/static/img/psb.svg
diff --git a/project/static/img/qiwi.svg b/src/static/img/qiwi.svg
similarity index 100%
rename from project/static/img/qiwi.svg
rename to src/static/img/qiwi.svg
diff --git a/project/static/img/refresh.png b/src/static/img/refresh.png
similarity index 100%
rename from project/static/img/refresh.png
rename to src/static/img/refresh.png
diff --git a/project/static/img/register-black.png b/src/static/img/register-black.png
similarity index 100%
rename from project/static/img/register-black.png
rename to src/static/img/register-black.png
diff --git a/project/static/img/register-yellow.png b/src/static/img/register-yellow.png
similarity index 100%
rename from project/static/img/register-yellow.png
rename to src/static/img/register-yellow.png
diff --git a/project/static/img/register.png b/src/static/img/register.png
similarity index 100%
rename from project/static/img/register.png
rename to src/static/img/register.png
diff --git a/project/static/img/save.png b/src/static/img/save.png
similarity index 100%
rename from project/static/img/save.png
rename to src/static/img/save.png
diff --git a/project/static/img/sber.svg b/src/static/img/sber.svg
similarity index 100%
rename from project/static/img/sber.svg
rename to src/static/img/sber.svg
diff --git a/project/static/img/sign-add.png b/src/static/img/sign-add.png
similarity index 100%
rename from project/static/img/sign-add.png
rename to src/static/img/sign-add.png
diff --git a/project/static/img/sign-copy.png b/src/static/img/sign-copy.png
similarity index 100%
rename from project/static/img/sign-copy.png
rename to src/static/img/sign-copy.png
diff --git a/project/static/img/sign-edit.png b/src/static/img/sign-edit.png
similarity index 100%
rename from project/static/img/sign-edit.png
rename to src/static/img/sign-edit.png
diff --git a/project/static/img/sign-email.png b/src/static/img/sign-email.png
similarity index 100%
rename from project/static/img/sign-email.png
rename to src/static/img/sign-email.png
diff --git a/project/static/img/sign-look.png b/src/static/img/sign-look.png
similarity index 100%
rename from project/static/img/sign-look.png
rename to src/static/img/sign-look.png
diff --git a/project/static/img/sign-pdf.png b/src/static/img/sign-pdf.png
similarity index 100%
rename from project/static/img/sign-pdf.png
rename to src/static/img/sign-pdf.png
diff --git a/project/static/img/sign-xls.png b/src/static/img/sign-xls.png
similarity index 100%
rename from project/static/img/sign-xls.png
rename to src/static/img/sign-xls.png
diff --git a/project/static/img/spinner.gif b/src/static/img/spinner.gif
similarity index 100%
rename from project/static/img/spinner.gif
rename to src/static/img/spinner.gif
diff --git a/project/static/img/svyaznoy.svg b/src/static/img/svyaznoy.svg
similarity index 100%
rename from project/static/img/svyaznoy.svg
rename to src/static/img/svyaznoy.svg
diff --git a/project/static/img/triangle-grey-bottom.png b/src/static/img/triangle-grey-bottom.png
similarity index 100%
rename from project/static/img/triangle-grey-bottom.png
rename to src/static/img/triangle-grey-bottom.png
diff --git a/project/static/img/triangle-orange-bottom.png b/src/static/img/triangle-orange-bottom.png
similarity index 100%
rename from project/static/img/triangle-orange-bottom.png
rename to src/static/img/triangle-orange-bottom.png
diff --git a/project/static/img/triangle-popup.png b/src/static/img/triangle-popup.png
similarity index 100%
rename from project/static/img/triangle-popup.png
rename to src/static/img/triangle-popup.png
diff --git a/project/static/img/triangle.png b/src/static/img/triangle.png
similarity index 100%
rename from project/static/img/triangle.png
rename to src/static/img/triangle.png
diff --git a/project/static/img/triangle2.png b/src/static/img/triangle2.png
similarity index 100%
rename from project/static/img/triangle2.png
rename to src/static/img/triangle2.png
diff --git a/project/static/img/upload-boss_sign.png b/src/static/img/upload-boss_sign.png
similarity index 100%
rename from project/static/img/upload-boss_sign.png
rename to src/static/img/upload-boss_sign.png
diff --git a/project/static/img/upload-glavbuh_sign.png b/src/static/img/upload-glavbuh_sign.png
similarity index 100%
rename from project/static/img/upload-glavbuh_sign.png
rename to src/static/img/upload-glavbuh_sign.png
diff --git a/project/static/img/upload-logo.png b/src/static/img/upload-logo.png
similarity index 100%
rename from project/static/img/upload-logo.png
rename to src/static/img/upload-logo.png
diff --git a/project/static/img/upload-stamp.png b/src/static/img/upload-stamp.png
similarity index 100%
rename from project/static/img/upload-stamp.png
rename to src/static/img/upload-stamp.png
diff --git a/project/static/img/visa.svg b/src/static/img/visa.svg
similarity index 100%
rename from project/static/img/visa.svg
rename to src/static/img/visa.svg
diff --git a/project/static/img/webmoney.svg b/src/static/img/webmoney.svg
similarity index 100%
rename from project/static/img/webmoney.svg
rename to src/static/img/webmoney.svg
diff --git a/project/static/img/yamoney.svg b/src/static/img/yamoney.svg
similarity index 100%
rename from project/static/img/yamoney.svg
rename to src/static/img/yamoney.svg
diff --git a/project/static/js/callback.js b/src/static/js/callback.js
similarity index 100%
rename from project/static/js/callback.js
rename to src/static/js/callback.js
diff --git a/project/static/js/client.commons.js b/src/static/js/client.commons.js
similarity index 100%
rename from project/static/js/client.commons.js
rename to src/static/js/client.commons.js
diff --git a/project/static/js/client.list.js b/src/static/js/client.list.js
similarity index 100%
rename from project/static/js/client.list.js
rename to src/static/js/client.list.js
diff --git a/project/static/js/client/search-external-api.js b/src/static/js/client/search-external-api.js
similarity index 100%
rename from project/static/js/client/search-external-api.js
rename to src/static/js/client/search-external-api.js
diff --git a/project/static/js/commons.js b/src/static/js/commons.js
similarity index 100%
rename from project/static/js/commons.js
rename to src/static/js/commons.js
diff --git a/project/static/js/csrf.js b/src/static/js/csrf.js
similarity index 100%
rename from project/static/js/csrf.js
rename to src/static/js/csrf.js
diff --git a/project/static/js/customer/profile.edit.js b/src/static/js/customer/profile.edit.js
similarity index 100%
rename from project/static/js/customer/profile.edit.js
rename to src/static/js/customer/profile.edit.js
diff --git a/project/static/js/customer/profile.view.js b/src/static/js/customer/profile.view.js
similarity index 100%
rename from project/static/js/customer/profile.view.js
rename to src/static/js/customer/profile.view.js
diff --git a/project/static/js/dialogs.js b/src/static/js/dialogs.js
similarity index 100%
rename from project/static/js/dialogs.js
rename to src/static/js/dialogs.js
diff --git a/project/static/js/docs/client.form.js b/src/static/js/docs/client.form.js
similarity index 100%
rename from project/static/js/docs/client.form.js
rename to src/static/js/docs/client.form.js
diff --git a/project/static/js/docs/common/calc_nds.js b/src/static/js/docs/common/calc_nds.js
similarity index 100%
rename from project/static/js/docs/common/calc_nds.js
rename to src/static/js/docs/common/calc_nds.js
diff --git a/project/static/js/docs/del_doc.js b/src/static/js/docs/del_doc.js
similarity index 100%
rename from project/static/js/docs/del_doc.js
rename to src/static/js/docs/del_doc.js
diff --git a/project/static/js/docs/list.email.js b/src/static/js/docs/list.email.js
similarity index 100%
rename from project/static/js/docs/list.email.js
rename to src/static/js/docs/list.email.js
diff --git a/project/static/js/docs/list.filters.js b/src/static/js/docs/list.filters.js
similarity index 100%
rename from project/static/js/docs/list.filters.js
rename to src/static/js/docs/list.filters.js
diff --git a/project/static/js/docs/list.panels.js b/src/static/js/docs/list.panels.js
similarity index 100%
rename from project/static/js/docs/list.panels.js
rename to src/static/js/docs/list.panels.js
diff --git a/project/static/js/docs/platejka.form.js b/src/static/js/docs/platejka.form.js
similarity index 100%
rename from project/static/js/docs/platejka.form.js
rename to src/static/js/docs/platejka.form.js
diff --git a/project/static/js/formset-events.js b/src/static/js/formset-events.js
similarity index 100%
rename from project/static/js/formset-events.js
rename to src/static/js/formset-events.js
diff --git a/project/static/js/lib/entertotab.js b/src/static/js/lib/entertotab.js
similarity index 100%
rename from project/static/js/lib/entertotab.js
rename to src/static/js/lib/entertotab.js
diff --git a/project/static/js/lib/handlebars-v4.0.5.js b/src/static/js/lib/handlebars-v4.0.5.js
similarity index 100%
rename from project/static/js/lib/handlebars-v4.0.5.js
rename to src/static/js/lib/handlebars-v4.0.5.js
diff --git a/project/static/js/lib/jquery-1.10.2.min.js b/src/static/js/lib/jquery-1.10.2.min.js
similarity index 100%
rename from project/static/js/lib/jquery-1.10.2.min.js
rename to src/static/js/lib/jquery-1.10.2.min.js
diff --git a/project/static/js/lib/jquery-ui-1.10.3.custom.min.js b/src/static/js/lib/jquery-ui-1.10.3.custom.min.js
similarity index 100%
rename from project/static/js/lib/jquery-ui-1.10.3.custom.min.js
rename to src/static/js/lib/jquery-ui-1.10.3.custom.min.js
diff --git a/project/static/js/lib/jquery.blockUI.js b/src/static/js/lib/jquery.blockUI.js
similarity index 100%
rename from project/static/js/lib/jquery.blockUI.js
rename to src/static/js/lib/jquery.blockUI.js
diff --git a/project/static/js/lib/jquery.cookie.js b/src/static/js/lib/jquery.cookie.js
similarity index 100%
rename from project/static/js/lib/jquery.cookie.js
rename to src/static/js/lib/jquery.cookie.js
diff --git a/project/static/js/lib/jquery.form.js b/src/static/js/lib/jquery.form.js
similarity index 100%
rename from project/static/js/lib/jquery.form.js
rename to src/static/js/lib/jquery.form.js
diff --git a/project/static/js/lib/jquery.formset.js b/src/static/js/lib/jquery.formset.js
similarity index 100%
rename from project/static/js/lib/jquery.formset.js
rename to src/static/js/lib/jquery.formset.js
diff --git a/project/static/js/lib/jquery.suggestions.min.js b/src/static/js/lib/jquery.suggestions.min.js
similarity index 100%
rename from project/static/js/lib/jquery.suggestions.min.js
rename to src/static/js/lib/jquery.suggestions.min.js
diff --git a/project/static/js/lib/jquery.ui.datepicker-ru.js b/src/static/js/lib/jquery.ui.datepicker-ru.js
similarity index 100%
rename from project/static/js/lib/jquery.ui.datepicker-ru.js
rename to src/static/js/lib/jquery.ui.datepicker-ru.js
diff --git a/project/static/js/license.js b/src/static/js/license.js
similarity index 100%
rename from project/static/js/license.js
rename to src/static/js/license.js
diff --git a/project/static/js/paginator.js b/src/static/js/paginator.js
similarity index 100%
rename from project/static/js/paginator.js
rename to src/static/js/paginator.js
diff --git a/project/static/js/profile/search-bank-external-api.js b/src/static/js/profile/search-bank-external-api.js
similarity index 100%
rename from project/static/js/profile/search-bank-external-api.js
rename to src/static/js/profile/search-bank-external-api.js
diff --git a/project/static/js/profile/search-main-external-api.js b/src/static/js/profile/search-main-external-api.js
similarity index 100%
rename from project/static/js/profile/search-main-external-api.js
rename to src/static/js/profile/search-main-external-api.js
diff --git a/project/templates/admin/callback/callback_change.html b/src/templates/admin/callback/callback_change.html
similarity index 100%
rename from project/templates/admin/callback/callback_change.html
rename to src/templates/admin/callback/callback_change.html
diff --git a/project/templates/autocomplete_light/docs_country_choice.html b/src/templates/autocomplete_light/docs_country_choice.html
similarity index 100%
rename from project/templates/autocomplete_light/docs_country_choice.html
rename to src/templates/autocomplete_light/docs_country_choice.html
diff --git a/project/templates/autocomplete_light/docs_measure_choice.html b/src/templates/autocomplete_light/docs_measure_choice.html
similarity index 100%
rename from project/templates/autocomplete_light/docs_measure_choice.html
rename to src/templates/autocomplete_light/docs_measure_choice.html
diff --git a/project/templates/base.html b/src/templates/base.html
similarity index 100%
rename from project/templates/base.html
rename to src/templates/base.html
diff --git a/project/templates/callback/callback_btn.html b/src/templates/callback/callback_btn.html
similarity index 100%
rename from project/templates/callback/callback_btn.html
rename to src/templates/callback/callback_btn.html
diff --git a/project/templates/callback/callback_form.html b/src/templates/callback/callback_form.html
similarity index 100%
rename from project/templates/callback/callback_form.html
rename to src/templates/callback/callback_form.html
diff --git a/project/templates/callback/req_avail_done.txt b/src/templates/callback/req_avail_done.txt
similarity index 100%
rename from project/templates/callback/req_avail_done.txt
rename to src/templates/callback/req_avail_done.txt
diff --git a/project/templates/callback/req_avail_new.txt b/src/templates/callback/req_avail_new.txt
similarity index 100%
rename from project/templates/callback/req_avail_new.txt
rename to src/templates/callback/req_avail_new.txt
diff --git a/project/templates/cms/menu.html b/src/templates/cms/menu.html
similarity index 100%
rename from project/templates/cms/menu.html
rename to src/templates/cms/menu.html
diff --git a/project/templates/cms/menu/main.html b/src/templates/cms/menu/main.html
similarity index 100%
rename from project/templates/cms/menu/main.html
rename to src/templates/cms/menu/main.html
diff --git a/project/templates/cms/menu/menu.html b/src/templates/cms/menu/menu.html
similarity index 100%
rename from project/templates/cms/menu/menu.html
rename to src/templates/cms/menu/menu.html
diff --git a/project/templates/customer/bank_accounts/add.html b/src/templates/customer/bank_accounts/add.html
similarity index 100%
rename from project/templates/customer/bank_accounts/add.html
rename to src/templates/customer/bank_accounts/add.html
diff --git a/project/templates/customer/bank_accounts/delete.html b/src/templates/customer/bank_accounts/delete.html
similarity index 100%
rename from project/templates/customer/bank_accounts/delete.html
rename to src/templates/customer/bank_accounts/delete.html
diff --git a/project/templates/customer/bank_accounts/edit.html b/src/templates/customer/bank_accounts/edit.html
similarity index 100%
rename from project/templates/customer/bank_accounts/edit.html
rename to src/templates/customer/bank_accounts/edit.html
diff --git a/project/templates/customer/bank_accounts/form.html b/src/templates/customer/bank_accounts/form.html
similarity index 100%
rename from project/templates/customer/bank_accounts/form.html
rename to src/templates/customer/bank_accounts/form.html
diff --git a/project/templates/customer/bank_accounts/list.html b/src/templates/customer/bank_accounts/list.html
similarity index 100%
rename from project/templates/customer/bank_accounts/list.html
rename to src/templates/customer/bank_accounts/list.html
diff --git a/project/templates/customer/clients/!!form.html b/src/templates/customer/clients/!!form.html
similarity index 100%
rename from project/templates/customer/clients/!!form.html
rename to src/templates/customer/clients/!!form.html
diff --git a/project/templates/customer/clients/add.html b/src/templates/customer/clients/add.html
similarity index 100%
rename from project/templates/customer/clients/add.html
rename to src/templates/customer/clients/add.html
diff --git a/project/templates/customer/clients/delete.html b/src/templates/customer/clients/delete.html
similarity index 100%
rename from project/templates/customer/clients/delete.html
rename to src/templates/customer/clients/delete.html
diff --git a/project/templates/customer/clients/edit.html b/src/templates/customer/clients/edit.html
similarity index 100%
rename from project/templates/customer/clients/edit.html
rename to src/templates/customer/clients/edit.html
diff --git a/project/templates/customer/clients/form.html b/src/templates/customer/clients/form.html
similarity index 100%
rename from project/templates/customer/clients/form.html
rename to src/templates/customer/clients/form.html
diff --git a/project/templates/customer/clients/list.html b/src/templates/customer/clients/list.html
similarity index 100%
rename from project/templates/customer/clients/list.html
rename to src/templates/customer/clients/list.html
diff --git a/project/templates/customer/clients/list_item.html b/src/templates/customer/clients/list_item.html
similarity index 100%
rename from project/templates/customer/clients/list_item.html
rename to src/templates/customer/clients/list_item.html
diff --git a/project/templates/customer/img_load.html b/src/templates/customer/img_load.html
similarity index 100%
rename from project/templates/customer/img_load.html
rename to src/templates/customer/img_load.html
diff --git a/project/templates/customer/img_load.png b/src/templates/customer/img_load.png
similarity index 100%
rename from project/templates/customer/img_load.png
rename to src/templates/customer/img_load.png
diff --git a/project/templates/customer/index.html b/src/templates/customer/index.html
similarity index 100%
rename from project/templates/customer/index.html
rename to src/templates/customer/index.html
diff --git a/project/templates/customer/profile/as_pdf.html b/src/templates/customer/profile/as_pdf.html
similarity index 100%
rename from project/templates/customer/profile/as_pdf.html
rename to src/templates/customer/profile/as_pdf.html
diff --git a/project/templates/customer/profile/edit.html b/src/templates/customer/profile/edit.html
similarity index 100%
rename from project/templates/customer/profile/edit.html
rename to src/templates/customer/profile/edit.html
diff --git a/project/templates/customer/profile/email.html b/src/templates/customer/profile/email.html
similarity index 100%
rename from project/templates/customer/profile/email.html
rename to src/templates/customer/profile/email.html
diff --git a/project/templates/customer/profile/end_order.html b/src/templates/customer/profile/end_order.html
similarity index 100%
rename from project/templates/customer/profile/end_order.html
rename to src/templates/customer/profile/end_order.html
diff --git a/project/templates/customer/profile/license.html b/src/templates/customer/profile/license.html
similarity index 100%
rename from project/templates/customer/profile/license.html
rename to src/templates/customer/profile/license.html
diff --git a/project/templates/customer/profile/license_list.html b/src/templates/customer/profile/license_list.html
similarity index 100%
rename from project/templates/customer/profile/license_list.html
rename to src/templates/customer/profile/license_list.html
diff --git a/project/templates/customer/profile/paid_list.html b/src/templates/customer/profile/paid_list.html
similarity index 100%
rename from project/templates/customer/profile/paid_list.html
rename to src/templates/customer/profile/paid_list.html
diff --git a/project/templates/customer/profile/profile_email.txt b/src/templates/customer/profile/profile_email.txt
similarity index 100%
rename from project/templates/customer/profile/profile_email.txt
rename to src/templates/customer/profile/profile_email.txt
diff --git a/project/templates/customer/profile/view.html b/src/templates/customer/profile/view.html
similarity index 100%
rename from project/templates/customer/profile/view.html
rename to src/templates/customer/profile/view.html
diff --git a/project/templates/customer/profile/yandex.html b/src/templates/customer/profile/yandex.html
similarity index 100%
rename from project/templates/customer/profile/yandex.html
rename to src/templates/customer/profile/yandex.html
diff --git a/project/templates/docs/!!stub_js.html b/src/templates/docs/!!stub_js.html
similarity index 100%
rename from project/templates/docs/!!stub_js.html
rename to src/templates/docs/!!stub_js.html
diff --git a/project/templates/docs/_base/base_add.html b/src/templates/docs/_base/base_add.html
similarity index 100%
rename from project/templates/docs/_base/base_add.html
rename to src/templates/docs/_base/base_add.html
diff --git a/project/templates/docs/_base/base_delete.html b/src/templates/docs/_base/base_delete.html
similarity index 100%
rename from project/templates/docs/_base/base_delete.html
rename to src/templates/docs/_base/base_delete.html
diff --git a/project/templates/docs/_base/base_edit.html b/src/templates/docs/_base/base_edit.html
similarity index 100%
rename from project/templates/docs/_base/base_edit.html
rename to src/templates/docs/_base/base_edit.html
diff --git a/project/templates/docs/_base/base_form.html b/src/templates/docs/_base/base_form.html
similarity index 100%
rename from project/templates/docs/_base/base_form.html
rename to src/templates/docs/_base/base_form.html
diff --git a/project/templates/docs/_base/base_list.html b/src/templates/docs/_base/base_list.html
similarity index 100%
rename from project/templates/docs/_base/base_list.html
rename to src/templates/docs/_base/base_list.html
diff --git a/project/templates/docs/_base/preview.html b/src/templates/docs/_base/preview.html
similarity index 100%
rename from project/templates/docs/_base/preview.html
rename to src/templates/docs/_base/preview.html
diff --git a/project/templates/docs/aktrabot/as_pdf.html b/src/templates/docs/aktrabot/as_pdf.html
similarity index 100%
rename from project/templates/docs/aktrabot/as_pdf.html
rename to src/templates/docs/aktrabot/as_pdf.html
diff --git a/project/templates/docs/aktrabot/form.html b/src/templates/docs/aktrabot/form.html
similarity index 100%
rename from project/templates/docs/aktrabot/form.html
rename to src/templates/docs/aktrabot/form.html
diff --git a/project/templates/docs/aktrabot/list.html b/src/templates/docs/aktrabot/list.html
similarity index 100%
rename from project/templates/docs/aktrabot/list.html
rename to src/templates/docs/aktrabot/list.html
diff --git a/project/templates/docs/aktsverki/as_pdf.html b/src/templates/docs/aktsverki/as_pdf.html
similarity index 100%
rename from project/templates/docs/aktsverki/as_pdf.html
rename to src/templates/docs/aktsverki/as_pdf.html
diff --git a/project/templates/docs/aktsverki/form.html b/src/templates/docs/aktsverki/form.html
similarity index 100%
rename from project/templates/docs/aktsverki/form.html
rename to src/templates/docs/aktsverki/form.html
diff --git a/project/templates/docs/aktsverki/form_tbl_items.html b/src/templates/docs/aktsverki/form_tbl_items.html
similarity index 100%
rename from project/templates/docs/aktsverki/form_tbl_items.html
rename to src/templates/docs/aktsverki/form_tbl_items.html
diff --git a/project/templates/docs/aktsverki/list.html b/src/templates/docs/aktsverki/list.html
similarity index 100%
rename from project/templates/docs/aktsverki/list.html
rename to src/templates/docs/aktsverki/list.html
diff --git a/project/templates/docs/docs.html b/src/templates/docs/docs.html
similarity index 100%
rename from project/templates/docs/docs.html
rename to src/templates/docs/docs.html
diff --git a/project/templates/docs/dover/as_pdf.html b/src/templates/docs/dover/as_pdf.html
similarity index 100%
rename from project/templates/docs/dover/as_pdf.html
rename to src/templates/docs/dover/as_pdf.html
diff --git a/project/templates/docs/dover/form.html b/src/templates/docs/dover/form.html
similarity index 100%
rename from project/templates/docs/dover/form.html
rename to src/templates/docs/dover/form.html
diff --git a/project/templates/docs/dover/form_tbl_items.html b/src/templates/docs/dover/form_tbl_items.html
similarity index 100%
rename from project/templates/docs/dover/form_tbl_items.html
rename to src/templates/docs/dover/form_tbl_items.html
diff --git a/project/templates/docs/dover/list.html b/src/templates/docs/dover/list.html
similarity index 100%
rename from project/templates/docs/dover/list.html
rename to src/templates/docs/dover/list.html
diff --git a/project/templates/docs/email/base_email.html b/src/templates/docs/email/base_email.html
similarity index 100%
rename from project/templates/docs/email/base_email.html
rename to src/templates/docs/email/base_email.html
diff --git a/project/templates/docs/email/base_email_form.html b/src/templates/docs/email/base_email_form.html
similarity index 100%
rename from project/templates/docs/email/base_email_form.html
rename to src/templates/docs/email/base_email_form.html
diff --git a/project/templates/docs/email/email.txt b/src/templates/docs/email/email.txt
similarity index 100%
rename from project/templates/docs/email/email.txt
rename to src/templates/docs/email/email.txt
diff --git a/project/templates/docs/faktura/as_pdf.html b/src/templates/docs/faktura/as_pdf.html
similarity index 100%
rename from project/templates/docs/faktura/as_pdf.html
rename to src/templates/docs/faktura/as_pdf.html
diff --git a/project/templates/docs/faktura/as_pdf_items_tbl_header.html b/src/templates/docs/faktura/as_pdf_items_tbl_header.html
similarity index 100%
rename from project/templates/docs/faktura/as_pdf_items_tbl_header.html
rename to src/templates/docs/faktura/as_pdf_items_tbl_header.html
diff --git a/project/templates/docs/faktura/form.html b/src/templates/docs/faktura/form.html
similarity index 100%
rename from project/templates/docs/faktura/form.html
rename to src/templates/docs/faktura/form.html
diff --git a/project/templates/docs/faktura/form_tbl_items.html b/src/templates/docs/faktura/form_tbl_items.html
similarity index 100%
rename from project/templates/docs/faktura/form_tbl_items.html
rename to src/templates/docs/faktura/form_tbl_items.html
diff --git a/project/templates/docs/faktura/list.html b/src/templates/docs/faktura/list.html
similarity index 100%
rename from project/templates/docs/faktura/list.html
rename to src/templates/docs/faktura/list.html
diff --git a/project/templates/docs/faktura/stub_js.html b/src/templates/docs/faktura/stub_js.html
similarity index 100%
rename from project/templates/docs/faktura/stub_js.html
rename to src/templates/docs/faktura/stub_js.html
diff --git a/project/templates/docs/index.html b/src/templates/docs/index.html
similarity index 100%
rename from project/templates/docs/index.html
rename to src/templates/docs/index.html
diff --git a/project/templates/docs/invoice/as_pdf.html b/src/templates/docs/invoice/as_pdf.html
similarity index 100%
rename from project/templates/docs/invoice/as_pdf.html
rename to src/templates/docs/invoice/as_pdf.html
diff --git a/project/templates/docs/invoice/form.html b/src/templates/docs/invoice/form.html
similarity index 100%
rename from project/templates/docs/invoice/form.html
rename to src/templates/docs/invoice/form.html
diff --git a/project/templates/docs/invoice/list.html b/src/templates/docs/invoice/list.html
similarity index 100%
rename from project/templates/docs/invoice/list.html
rename to src/templates/docs/invoice/list.html
diff --git a/project/templates/docs/nakladn/as_pdf.html b/src/templates/docs/nakladn/as_pdf.html
similarity index 100%
rename from project/templates/docs/nakladn/as_pdf.html
rename to src/templates/docs/nakladn/as_pdf.html
diff --git a/project/templates/docs/nakladn/as_pdf_items_tbl_header.html b/src/templates/docs/nakladn/as_pdf_items_tbl_header.html
similarity index 100%
rename from project/templates/docs/nakladn/as_pdf_items_tbl_header.html
rename to src/templates/docs/nakladn/as_pdf_items_tbl_header.html
diff --git a/project/templates/docs/nakladn/form.html b/src/templates/docs/nakladn/form.html
similarity index 100%
rename from project/templates/docs/nakladn/form.html
rename to src/templates/docs/nakladn/form.html
diff --git a/project/templates/docs/nakladn/form_tbl_items.html b/src/templates/docs/nakladn/form_tbl_items.html
similarity index 100%
rename from project/templates/docs/nakladn/form_tbl_items.html
rename to src/templates/docs/nakladn/form_tbl_items.html
diff --git a/project/templates/docs/nakladn/list.html b/src/templates/docs/nakladn/list.html
similarity index 100%
rename from project/templates/docs/nakladn/list.html
rename to src/templates/docs/nakladn/list.html
diff --git a/project/templates/docs/platejka/as_pdf.html b/src/templates/docs/platejka/as_pdf.html
similarity index 100%
rename from project/templates/docs/platejka/as_pdf.html
rename to src/templates/docs/platejka/as_pdf.html
diff --git a/project/templates/docs/platejka/form.html b/src/templates/docs/platejka/form.html
similarity index 100%
rename from project/templates/docs/platejka/form.html
rename to src/templates/docs/platejka/form.html
diff --git a/project/templates/docs/platejka/js.html b/src/templates/docs/platejka/js.html
similarity index 100%
rename from project/templates/docs/platejka/js.html
rename to src/templates/docs/platejka/js.html
diff --git a/project/templates/docs/platejka/list.html b/src/templates/docs/platejka/list.html
similarity index 100%
rename from project/templates/docs/platejka/list.html
rename to src/templates/docs/platejka/list.html
diff --git a/project/templates/docs/stub_js.html b/src/templates/docs/stub_js.html
similarity index 100%
rename from project/templates/docs/stub_js.html
rename to src/templates/docs/stub_js.html
diff --git a/project/templates/hbs/bank-tpl.html b/src/templates/hbs/bank-tpl.html
similarity index 100%
rename from project/templates/hbs/bank-tpl.html
rename to src/templates/hbs/bank-tpl.html
diff --git a/project/templates/menu/menu.html b/src/templates/menu/menu.html
similarity index 100%
rename from project/templates/menu/menu.html
rename to src/templates/menu/menu.html
diff --git a/project/templates/myauth/change_email.html b/src/templates/myauth/change_email.html
similarity index 100%
rename from project/templates/myauth/change_email.html
rename to src/templates/myauth/change_email.html
diff --git a/project/templates/myauth/change_email_form.html b/src/templates/myauth/change_email_form.html
similarity index 100%
rename from project/templates/myauth/change_email_form.html
rename to src/templates/myauth/change_email_form.html
diff --git a/project/templates/myauth/change_password.html b/src/templates/myauth/change_password.html
similarity index 100%
rename from project/templates/myauth/change_password.html
rename to src/templates/myauth/change_password.html
diff --git a/project/templates/myauth/change_password_form.html b/src/templates/myauth/change_password_form.html
similarity index 100%
rename from project/templates/myauth/change_password_form.html
rename to src/templates/myauth/change_password_form.html
diff --git a/project/templates/myauth/delete_profile.html b/src/templates/myauth/delete_profile.html
similarity index 100%
rename from project/templates/myauth/delete_profile.html
rename to src/templates/myauth/delete_profile.html
diff --git a/project/templates/myauth/license_activated.txt b/src/templates/myauth/license_activated.txt
similarity index 100%
rename from project/templates/myauth/license_activated.txt
rename to src/templates/myauth/license_activated.txt
diff --git a/project/templates/myauth/license_ended.txt b/src/templates/myauth/license_ended.txt
similarity index 100%
rename from project/templates/myauth/license_ended.txt
rename to src/templates/myauth/license_ended.txt
diff --git a/project/templates/myauth/license_ends.txt b/src/templates/myauth/license_ends.txt
similarity index 100%
rename from project/templates/myauth/license_ends.txt
rename to src/templates/myauth/license_ends.txt
diff --git a/project/templates/myauth/license_to_pay.txt b/src/templates/myauth/license_to_pay.txt
similarity index 100%
rename from project/templates/myauth/license_to_pay.txt
rename to src/templates/myauth/license_to_pay.txt
diff --git a/project/templates/myauth/login.html b/src/templates/myauth/login.html
similarity index 100%
rename from project/templates/myauth/login.html
rename to src/templates/myauth/login.html
diff --git a/project/templates/myauth/login_form.html b/src/templates/myauth/login_form.html
similarity index 100%
rename from project/templates/myauth/login_form.html
rename to src/templates/myauth/login_form.html
diff --git a/project/templates/myauth/register.html b/src/templates/myauth/register.html
similarity index 100%
rename from project/templates/myauth/register.html
rename to src/templates/myauth/register.html
diff --git a/project/templates/myauth/register_form.html b/src/templates/myauth/register_form.html
similarity index 100%
rename from project/templates/myauth/register_form.html
rename to src/templates/myauth/register_form.html
diff --git a/project/templates/myauth/registration_closed.html b/src/templates/myauth/registration_closed.html
similarity index 100%
rename from project/templates/myauth/registration_closed.html
rename to src/templates/myauth/registration_closed.html
diff --git a/project/templates/myauth/registration_email.txt b/src/templates/myauth/registration_email.txt
similarity index 100%
rename from project/templates/myauth/registration_email.txt
rename to src/templates/myauth/registration_email.txt
diff --git a/project/templates/myauth/reset.html b/src/templates/myauth/reset.html
similarity index 100%
rename from project/templates/myauth/reset.html
rename to src/templates/myauth/reset.html
diff --git a/project/templates/myauth/reset_form.html b/src/templates/myauth/reset_form.html
similarity index 100%
rename from project/templates/myauth/reset_form.html
rename to src/templates/myauth/reset_form.html
diff --git a/project/templates/myauth/reset_key_email.txt b/src/templates/myauth/reset_key_email.txt
similarity index 100%
rename from project/templates/myauth/reset_key_email.txt
rename to src/templates/myauth/reset_key_email.txt
diff --git a/project/templates/myauth/reset_key_ready.html b/src/templates/myauth/reset_key_ready.html
similarity index 100%
rename from project/templates/myauth/reset_key_ready.html
rename to src/templates/myauth/reset_key_ready.html
diff --git a/project/templates/myauth/reset_new_password_email.txt b/src/templates/myauth/reset_new_password_email.txt
similarity index 100%
rename from project/templates/myauth/reset_new_password_email.txt
rename to src/templates/myauth/reset_new_password_email.txt
diff --git a/project/templates/pages/index.html b/src/templates/pages/index.html
similarity index 100%
rename from project/templates/pages/index.html
rename to src/templates/pages/index.html
diff --git a/project/templates/pages/inner_page.html b/src/templates/pages/inner_page.html
similarity index 100%
rename from project/templates/pages/inner_page.html
rename to src/templates/pages/inner_page.html
diff --git a/project/templates/pages/placeholders.html b/src/templates/pages/placeholders.html
similarity index 100%
rename from project/templates/pages/placeholders.html
rename to src/templates/pages/placeholders.html
diff --git a/project/templates/paginator.html b/src/templates/paginator.html
similarity index 100%
rename from project/templates/paginator.html
rename to src/templates/paginator.html
diff --git a/project/templates/xls/4pd.xls b/src/templates/xls/4pd.xls
similarity index 100%
rename from project/templates/xls/4pd.xls
rename to src/templates/xls/4pd.xls
diff --git a/project/templates/xls/act.xls b/src/templates/xls/act.xls
similarity index 100%
rename from project/templates/xls/act.xls
rename to src/templates/xls/act.xls
diff --git a/project/templates/xls/bill.xls b/src/templates/xls/bill.xls
similarity index 100%
rename from project/templates/xls/bill.xls
rename to src/templates/xls/bill.xls
diff --git a/project/templates/xls/stamp.bmp b/src/templates/xls/stamp.bmp
similarity index 100%
rename from project/templates/xls/stamp.bmp
rename to src/templates/xls/stamp.bmp
diff --git a/project/templates/xls/stamp1.bmp b/src/templates/xls/stamp1.bmp
similarity index 100%
rename from project/templates/xls/stamp1.bmp
rename to src/templates/xls/stamp1.bmp
diff --git a/project/urls.py b/src/urls.py
similarity index 100%
rename from project/urls.py
rename to src/urls.py
diff --git a/project/wsgi.py b/src/wsgi.py
similarity index 95%
rename from project/wsgi.py
rename to src/wsgi.py
index f194192..4b12233 100644
--- a/project/wsgi.py
+++ b/src/wsgi.py
@@ -19,7 +19,7 @@ import os
# if running multiple sites in the same mod_wsgi process. To fix this, use
# mod_wsgi daemon mode with each site in its own daemon process, or use
# os.environ["DJANGO_SETTINGS_MODULE"] = "project.settings"
-os.environ.setdefault("DJANGO_SETTINGS_MODULE", "project.settings")
+os.environ.setdefault("DJANGO_SETTINGS_MODULE", "src.settings")
# This application object is used by any WSGI server configured to use this
# file. This includes Django's development server, if the WSGI_APPLICATION
diff --git a/project/xls_templates/aktrabot.xls b/src/xls_templates/aktrabot.xls
similarity index 100%
rename from project/xls_templates/aktrabot.xls
rename to src/xls_templates/aktrabot.xls
diff --git a/project/xls_templates/aktsverki.xls b/src/xls_templates/aktsverki.xls
similarity index 100%
rename from project/xls_templates/aktsverki.xls
rename to src/xls_templates/aktsverki.xls
diff --git a/project/xls_templates/dover.xls b/src/xls_templates/dover.xls
similarity index 100%
rename from project/xls_templates/dover.xls
rename to src/xls_templates/dover.xls
diff --git a/project/xls_templates/faktura.xls b/src/xls_templates/faktura.xls
similarity index 100%
rename from project/xls_templates/faktura.xls
rename to src/xls_templates/faktura.xls
diff --git a/project/xls_templates/invoice.xls b/src/xls_templates/invoice.xls
similarity index 100%
rename from project/xls_templates/invoice.xls
rename to src/xls_templates/invoice.xls
diff --git a/project/xls_templates/nakladn.xls b/src/xls_templates/nakladn.xls
similarity index 100%
rename from project/xls_templates/nakladn.xls
rename to src/xls_templates/nakladn.xls
diff --git a/project/xls_templates/platejka.xls b/src/xls_templates/platejka.xls
similarity index 100%
rename from project/xls_templates/platejka.xls
rename to src/xls_templates/platejka.xls
diff --git a/project/yandex_money/__init__.py b/src/yandex_money/__init__.py
similarity index 100%
rename from project/yandex_money/__init__.py
rename to src/yandex_money/__init__.py
diff --git a/project/yandex_money/admin.py b/src/yandex_money/admin.py
similarity index 100%
rename from project/yandex_money/admin.py
rename to src/yandex_money/admin.py
diff --git a/project/yandex_money/forms.py b/src/yandex_money/forms.py
similarity index 100%
rename from project/yandex_money/forms.py
rename to src/yandex_money/forms.py
diff --git a/project/yandex_money/models.py b/src/yandex_money/models.py
similarity index 100%
rename from project/yandex_money/models.py
rename to src/yandex_money/models.py
diff --git a/project/yandex_money/signals.py b/src/yandex_money/signals.py
similarity index 100%
rename from project/yandex_money/signals.py
rename to src/yandex_money/signals.py
diff --git a/project/yandex_money/urls.py b/src/yandex_money/urls.py
similarity index 100%
rename from project/yandex_money/urls.py
rename to src/yandex_money/urls.py
diff --git a/project/yandex_money/utils.py b/src/yandex_money/utils.py
similarity index 100%
rename from project/yandex_money/utils.py
rename to src/yandex_money/utils.py
diff --git a/project/yandex_money/views.py b/src/yandex_money/views.py
similarity index 100%
rename from project/yandex_money/views.py
rename to src/yandex_money/views.py