Removes Overview headline.
This commit is contained in:
parent
9fbbcd48a8
commit
77424c4842
2 changed files with 2 additions and 5 deletions
|
@ -62,13 +62,12 @@ class OverviewController(private val modifiers: TemplateModifiers, private val r
|
|||
ctx.tempolin(
|
||||
Frame(
|
||||
modifiers = modifiers,
|
||||
title = "Overview",
|
||||
title = "Documents for ${LocalDate.of(year, month, 1).formatHumanYearMonth()}",
|
||||
target = "document",
|
||||
back = "/",
|
||||
logout = true,
|
||||
content = OverviewDocuments(
|
||||
modifiers = modifiers,
|
||||
category = LocalDate.of(year, month, 1).formatHumanYearMonth(),
|
||||
document = {
|
||||
documents.sortedBy { it.referenceDate }.map { document ->
|
||||
DocumentBlock(
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
<h1>Documents for {*$category}</h1>
|
||||
|
||||
<table class="striped">
|
||||
<table class="stripes">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Date</th>
|
||||
|
|
Loading…
Reference in a new issue