{% extends '_include/base.html.twig' %} {% block title %}Accounting Periods{% endblock %} {% block breadcrumbs %} {% endblock %} {% block page_title %}Accounting Periods{% if profile %} — {{ profile.companyName }}{% endif %}{% endblock %} {% block content %} {% if not profile %}
Select a fiscal profile to view accounting periods.
| Label | Fiscal Year | Start Date | End Date | Status | Closed At | Closed By |
|---|---|---|---|---|---|---|
| {{ period.label }} {% if current_period and current_period.id == period.id %} Current {% endif %} | {{ period.fiscalYear }} | {{ period.startDate|date('Y-m-d') }} | {{ period.endDate|date('Y-m-d') }} | {{ period.status|capitalize }} | {{ period.closedAt ? period.closedAt|date('Y-m-d H:i') : '—' }} | {{ period.closedBy ? period.closedBy : '—' }} |
| No accounting periods defined. | ||||||