MemberDataSheet: Never show area commitments on first page

This commit is contained in:
2024-02-26 10:31:29 +01:00
parent 665e16d78f
commit 4673877d36
2 changed files with 7 additions and 0 deletions

View File

@ -158,6 +158,7 @@
} }
@if (areaComs.Count != 0) { @if (areaComs.Count != 0) {
<br class="area-commitements"/>
<h2>Flächenbindungen per @($"{Model.Date:dd.MM.yyyy}")</h2> <h2>Flächenbindungen per @($"{Model.Date:dd.MM.yyyy}")</h2>
<table class="area-commitements"> <table class="area-commitements">
<colgroup> <colgroup>

View File

@ -22,3 +22,9 @@ table.area-commitements td.text {
table.area-commitements tr.sum { table.area-commitements tr.sum {
font-size: 12pt; font-size: 12pt;
} }
@page :not(:first) {
br.area-commitements {
display: none;
}
}