aboutsummaryrefslogtreecommitdiff
path: root/subsonic-backend/src/main/webapp/WEB-INF/jsp/backend/payment.jsp
blob: c72f798dc7ad043d6b3e006d8428bc41e14866ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="iso-8859-1" %>

<html>
<head>
    <%@ include file="../head.jsp" %>
    <link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.8.0r4/build/reset/reset.css">
    <link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.8.0r4/build/fonts/fonts.css">
    <link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.8.0r4/build/grid/grid.css">
    <link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.8.0r4/build/base/base.css">
    <meta http-equiv="refresh" content="300">
</head>
<body>

<div style="margin-left: auto; margin-right: auto;width:10em">
    <h1 style="text-align: center;">&euro;${model.sumToday}</h1>

    <div style="white-space: nowrap; text-align:center;">
        <span title="Sum yesterday">Y <b>&euro;${model.sumYesterday}</b></span> &nbsp;&nbsp;
        <span title="Daily average this month">M <b>&euro;${model.dayAverageThisMonth}</b></span>
    </div>
</div>
</body>
</html>