{% extends 'base.html' %} {% load static %} {% block title %}{% if is_edit %}Edit{% else %}Create{% endif %} Year-End Snapshot - {{ organization.name }}{% endblock %} {% block page_title %}{% if is_edit %}Edit{% else %}Create{% endif %} Year-End Snapshot{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}
{% csrf_token %}

{% if is_edit %} Edit Year-End Snapshot {{ snapshot.year }} {% else %} Create New Year-End Snapshot {% endif %}

{% if is_edit and snapshot.is_finalized %} {% endif %}

Financial Year

{{ form.year }} {% if form.year.errors %}
{{ form.year.errors }}
{% endif %} {{ form.year.help_text }}

Inventory / Stok

Critical for Cost of Goods Sold calculation

RM {{ form.opening_inventory_value }}
{% if form.opening_inventory_value.errors %}
{{ form.opening_inventory_value.errors }}
{% endif %} {{ form.opening_inventory_value.help_text }}
RM {{ form.closing_inventory_value }}
{% if form.closing_inventory_value.errors %}
{{ form.closing_inventory_value.errors }}
{% endif %} {{ form.closing_inventory_value.help_text }}

Balance Sheet Items (31 Dis)

Year-end balances for Kunci Kira-Kira

RM {{ form.closing_bank_balance }}
{% if form.closing_bank_balance.errors %}
{{ form.closing_bank_balance.errors }}
{% endif %} {{ form.closing_bank_balance.help_text }}
RM {{ form.closing_trade_receivables }}
{% if form.closing_trade_receivables.errors %}
{{ form.closing_trade_receivables.errors }}
{% endif %} {{ form.closing_trade_receivables.help_text }}
RM {{ form.closing_trade_payables }}
{% if form.closing_trade_payables.errors %}
{{ form.closing_trade_payables.errors }}
{% endif %} {{ form.closing_trade_payables.help_text }}
RM {{ form.closing_loans_balance }}
{% if form.closing_loans_balance.errors %}
{{ form.closing_loans_balance.errors }}
{% endif %} {{ form.closing_loans_balance.help_text }}
RM {{ form.closing_other_current_assets }}
{% if form.closing_other_current_assets.errors %}
{{ form.closing_other_current_assets.errors }}
{% endif %} {{ form.closing_other_current_assets.help_text }}
RM {{ form.closing_other_current_liabilities }}
{% if form.closing_other_current_liabilities.errors %}
{{ form.closing_other_current_liabilities.errors }}
{% endif %} {{ form.closing_other_current_liabilities.help_text }}

Additional Information

{{ form.notes }} {% if form.notes.errors %}
{{ form.notes.errors }}
{% endif %} {{ form.notes.help_text }}
{{ form.is_finalized }}
{{ form.is_finalized.help_text }}
{% endblock %}