84 lines
2.3 KiB
Plaintext
84 lines
2.3 KiB
Plaintext
@model FastReport.Web.WebReport
|
||
@{
|
||
Layout = null;
|
||
var from = (DateTime)ViewBag.DateFrom;
|
||
var to = (DateTime)ViewBag.DateTo;
|
||
}
|
||
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="utf-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||
<title>RIS Report — @from.ToString("MMM d") to @to.ToString("MMM d, yyyy")</title>
|
||
@* <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" /> *@
|
||
<style>
|
||
body {
|
||
margin: 0;
|
||
font-family: 'DM Sans', system-ui, sans-serif;
|
||
background: #f0f6f7;
|
||
}
|
||
|
||
.rep-bar {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: space-between;
|
||
padding: 12px 20px;
|
||
background: linear-gradient(135deg, #0d5c63, #0e7c86);
|
||
color: #fff;
|
||
}
|
||
|
||
.rep-bar h1 {
|
||
font-size: 1rem;
|
||
font-weight: 600;
|
||
margin: 0;
|
||
display: flex;
|
||
align-items: center;
|
||
gap: 8px;
|
||
}
|
||
|
||
.rep-bar .period {
|
||
font-size: .8rem;
|
||
color: rgba(255,255,255,.7);
|
||
margin-top: 2px;
|
||
}
|
||
|
||
.rep-back {
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 6px;
|
||
padding: 7px 14px;
|
||
border-radius: 8px;
|
||
background: rgba(255,255,255,.15);
|
||
color: #fff;
|
||
text-decoration: none;
|
||
font-size: .85rem;
|
||
font-weight: 600;
|
||
}
|
||
|
||
.rep-back:hover {
|
||
background: rgba(255,255,255,.28);
|
||
}
|
||
|
||
.rep-body {
|
||
padding: 16px;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="rep-bar">
|
||
<div>
|
||
<h1><i class="fas fa-file-lines"></i> Return Issuance Slip Report</h1>
|
||
<div class="period">
|
||
Period: @from.ToString("MMMM d, yyyy") – @to.ToString("MMMM d, yyyy")
|
||
</div>
|
||
</div>
|
||
<a href="javascript:window.close()" class="rep-back">
|
||
<i class="fas fa-xmark"></i> Close
|
||
</a>
|
||
</div>
|
||
|
||
<div class="rep-body">
|
||
@await Model.Render()
|
||
</div>
|
||
</body>
|
||
</html> |