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(
|
ctx.tempolin(
|
||||||
Frame(
|
Frame(
|
||||||
modifiers = modifiers,
|
modifiers = modifiers,
|
||||||
title = "Overview",
|
title = "Documents for ${LocalDate.of(year, month, 1).formatHumanYearMonth()}",
|
||||||
target = "document",
|
target = "document",
|
||||||
back = "/",
|
back = "/",
|
||||||
logout = true,
|
logout = true,
|
||||||
content = OverviewDocuments(
|
content = OverviewDocuments(
|
||||||
modifiers = modifiers,
|
modifiers = modifiers,
|
||||||
category = LocalDate.of(year, month, 1).formatHumanYearMonth(),
|
|
||||||
document = {
|
document = {
|
||||||
documents.sortedBy { it.referenceDate }.map { document ->
|
documents.sortedBy { it.referenceDate }.map { document ->
|
||||||
DocumentBlock(
|
DocumentBlock(
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
<h1>Documents for {*$category}</h1>
|
<table class="stripes">
|
||||||
|
|
||||||
<table class="striped">
|
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Date</th>
|
<th>Date</th>
|
||||||
|
|
Loading…
Reference in a new issue