Files
accounting/index.html
2025-08-22 12:04:21 +02:00

180 lines
3.2 KiB
HTML

<!doctype html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Rechnung vom 0001-01-01 00:00:00 &#43;0000 UTC</title>
<style>
body {
font-family: sans-serif;
margin: 40px;
color: #333;
}
section {
margin-bottom: 3em;
}
p {
margin-top: 0.25em;
margin-bottom: 0.5em;
}
header {
display: flex;
justify-content: space-between;
margin-bottom: 40px;
}
h1 {
margin: 0;
font-size: 2em;
}
.company,
.client {
margin-bottom: 20px;
}
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}
table,
th,
td {
border: 1px solid #ccc;
}
th,
td {
padding: 10px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
tfoot td {
font-weight: bold;
}
h2 {
margin-top: 40px;
}
article {
margin-bottom: 20px;
}
footer {
margin-top: 40px;
font-size: 0.9em;
text-align: center;
color: #666;
}
.totals {
float: right;
width: 300px;
margin-top: -15px;
}
.totals table {
border: none;
margin: 0;
}
.totals td {
border: none;
padding: 5px 10px;
text-align: right;
}
</style>
</head>
<body>
<header>
<div class="company">
<h2>.CompanyName</h2>
<p>
.CompanyAddress <br />
.CompanyContact
</p>
<p></p>
</div>
<div class="invoice-info">
<p>
<strong>Rechnung:</strong> .InvoiceNumber <br />
<strong>Datum:</strong> .Date <br />
<strong>Fällig am:</strong> .DueDate
</p>
</div>
</header>
<section class="client">
<h2>Rechnung an:</h2>
<p>
.ClientName <br />
.ClientAddress <br />
.ClientContact
</p>
</section>
<section>
<table>
<thead>
<tr>
<th>FID</th>
<th>Name</th>
<th>Zeitaufwand</th>
<th>Stundensatz</th>
<th>Preis CHF</th>
<th>Fertiggestellt</th>
</tr>
</thead>
<tbody>
<tr>
<td>6</td>
<td>Multilingual</td>
<td>2.50 h</td>
<td>16 CHF/h</td>
<td>40.00 CHF</td>
<td>21.08.2025 18:05</td>
</tr>
</tbody>
</table>
<div class="totals">
<table>
<tr>
<td>Gesamtbetrag:</td>
<td> CHF</td>
</tr>
</table>
</div>
</section>
<hr />
<section>
<h2>Details zu den Features</h2>
<article>
<h3>6: Multilingual</h3>
<pre><code class="language-info">duration: 2h 30min
</code></pre>
<p>The application must support English and German.</p>
<h5 id="todo-s">TODO&rsquo;s</h5>
<ul>
<li><input type="checkbox" checked disabled> Add multiple languages to Pages</li>
<li><input type="checkbox" checked disabled> Add multiple languages to Events</li>
</ul>
</article>
</section>
<footer>
<p>
Bitte überweisen Sie den Gesamtbetrag bis zum Fälligkeitsdatum auf
folgendes Konto:
</p>
<p>.BankDetails</p>
<p>Vielen Dank für Ihr Vertrauen!</p>
</footer>
</body>
</html>