menu
{% for actionbutton in action_buttons %}
- {{actionbutton.label}}{% if actionbutton.icon!="" %} {{actionbutton.icon}}{% endif %}
{% endfor %}
{% set actions_count = 0 %}
{% if pdf_download_enabled is defined and pdf_download_enabled and app.download_enabled %}
{% set actions_count = actions_count+1 %}
- picture_as_pdf
{% endif %}
{% if show_payment is defined and show_payment %}
{% set actions_count = actions_count+1 %}
picture_as_pdfPay Now
{% endif %}
{% if edit_enabled is defined and edit_enabled %}
{% set actions_count = actions_count+1 %}
- mode_edit
{% endif %}
{% if upload_document_enabled is defined and upload_document_enabled and app.upload_enabled %}
{% set actions_count = actions_count+1 %}
- file_upload
{% endif %}
{% if create_enabled is defined and create_enabled %}
{% set actions_count = actions_count+1 %}
- add
{% endif %}
{% if actions_count is defined and actions_count<4 %}
- keyboard_backspace
{% endif %}
{% if upload_document_enabled is defined and upload_document_enabled and app.upload_enabled %}
{{"Upload Attachment"|trans}}
{% endif %}
{% if show_payment is defined and show_payment %}
Choose a Payment Mode
TOTAL: {{record[module_config["payment"]["amount_field"]]}} {{payment_currency_symbol}}
{% endif %}
{% block detail_header %}
{% endblock %}
{% if content_field %}
{% include 'themes/default/modules/PortalModule/details/details.content.html' %}
{% else %}
{% include 'themes/default/modules/PortalModule/details/details.blocks.html' %}
{% endif %}
{% if inventory_block is defined and inventory_block %}
{% include 'themes/default/modules/PortalModule/details/details.inventory_block.html' %}
{% endif %}
{% include 'themes/default/modules/PortalModule/details/details.comments.html' %}
{% block detail_related_pre %}
{% endblock %}
{% include 'themes/default/modules/PortalModule/details/details.related.html' %}
{% block detail_related_after %}
{% endblock %}
{% block detail_footer %}
{% endblock %}
{% endblock %}
{% block footerscripts %}
{% if true %}
{% endif %}
{% endblock %}