diff --git a/views/events/event.php b/views/events/event.php
new file mode 100644
index 0000000..9c95adf
--- /dev/null
+++ b/views/events/event.php
@@ -0,0 +1,27 @@
+@extends(templates/layout_normal)
+
+@section(main)
+
+
+
+
+ getMainCurrency()->getCode();
+ $mainCurrencyRoundDigits = $community->getMainCurrency()->getRoundDigits();
+ ?>
+
Finances
+
Transactions | New transaction
+
+
+ Total cost |
+ = number_format($totalCost, $mainCurrencyRoundDigits) ?> = $mainCurrencyCode ?> |
+
+
+
+
+@endsection
diff --git a/views/events/event_edit.php b/views/events/event_edit.php
new file mode 100644
index 0000000..2326572
--- /dev/null
+++ b/views/events/event_edit.php
@@ -0,0 +1,40 @@
+@extends(templates/layout_normal)
+
+@section(main)
+
+
+ getRoute('community.event.edit-action')->generateLink(['communitySlug' => $community->getSlug(), 'eventSlug' => $event->getSlug()]) :
+ Container::$routeCollection->getRoute('community.events.new-action')->generateLink(['communitySlug' => $community->getSlug()]);
+ ?>
+
+
+
+
+
+@endsection
diff --git a/views/events/events.php b/views/events/events.php
new file mode 100644
index 0000000..a3cf74b
--- /dev/null
+++ b/views/events/events.php
@@ -0,0 +1,60 @@
+@extends(templates/layout_normal)
+
+@section(main)
+
+
+ New event
+
+ 0): ?>
+ 1): ?>
+
+ «
+ ‹
+
+
+ = $i + 1 ?>
+
+ = $i + 1 ?>
+
+
+ ›
+ »
+
+
+
+
+
+
+
= $event->getTitle() ?>
+
= $event->getStartDate()->format('Y-m-d') ?> – = $event->getEndDate()->format('Y-m-d') ?>
+
= $event->getDescription() ?>
+
+
+
+
+ 1): ?>
+
+ «
+ ‹
+
+
+ = $i + 1 ?>
+
+ = $i + 1 ?>
+
+
+ ›
+ »
+
+
+
+ New event
+
+
+
There are no events yet.
+
+
+@endsection