Commit 5433d870ffef4df078ce5c3f550db55a11fda955
1 parent
b7581a8eaf
Exists in
master
bugfix
Showing 1 changed file with 4 additions and 4 deletions Inline Diff
views/index.html
1 | <!DOCTYPE html> | 1 | <!DOCTYPE html> |
2 | <html lang="en"> | 2 | <html lang="en"> |
3 | <head> | 3 | <head> |
4 | <meta charset="utf-8"> | 4 | <meta charset="utf-8"> |
5 | <meta http-equiv="X-UA-Compatible" content="IE=edge"> | 5 | <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
6 | <meta name="viewport" content="width=device-width, initial-scale=1"> | 6 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
7 | <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> | 7 | <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> |
8 | <title>{title}</title> | 8 | <title>{title}</title> |
9 | 9 | ||
10 | <!-- Latest compiled and minified CSS --> | 10 | <!-- Latest compiled and minified CSS --> |
11 | <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> | 11 | <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> |
12 | 12 | ||
13 | <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> | 13 | <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> |
14 | <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> | 14 | <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> |
15 | <!--[if lt IE 9]> | 15 | <!--[if lt IE 9]> |
16 | <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> | 16 | <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> |
17 | <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | 17 | <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> |
18 | <![endif]--> | 18 | <![endif]--> |
19 | </head> | 19 | </head> |
20 | <body> | 20 | <body> |
21 | <div class="pull-left"> | 21 | <div class="pull-left"> |
22 | <img src="{logo}"> | 22 | <img src="{logo}"> |
23 | </div> | 23 | </div> |
24 | <h1> | 24 | <h1> |
25 | <br/><br/> | 25 | <br/><br/> |
26 | {title} | 26 | {title} |
27 | </h1> | 27 | </h1> |
28 | 28 | ||
29 | <table class="table table-hover table-striped"> | 29 | <table class="table table-hover table-striped"> |
30 | {for balance in balances} | 30 | {for balance in balances} |
31 | <tr> | 31 | <tr> |
32 | <td> | 32 | <td> |
33 | 33 | ||
34 | {% if balance_url %} | 34 | {if balance.url} |
35 | <a href="{balance.url}"> | 35 | <a href="{balance.url}"> |
36 | {% endif %} | 36 | {/if} |
37 | 37 | ||
38 | {balance.title} | 38 | {balance.title} |
39 | 39 | ||
40 | {% if balance_url %} | 40 | {if balance.url} |
41 | </a> | 41 | </a> |
42 | {% endif %} | 42 | {/if} |
43 | 43 | ||
44 | </td> | 44 | </td> |
45 | 45 | ||
46 | <td> | 46 | <td> |
47 | <div class="pull-right"> | 47 | <div class="pull-right"> |
48 | {balance.balance} | 48 | {balance.balance} |
49 | </div> | 49 | </div> |
50 | </td> | 50 | </td> |
51 | </tr> | 51 | </tr> |
52 | {/for} | 52 | {/for} |
53 | </table> | 53 | </table> |
54 | 54 | ||
55 | Generated on {timestamp} | 55 | Generated on {timestamp} |
56 | 56 | ||
57 | 57 | ||
58 | <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> | 58 | <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> |
59 | <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> | 59 | <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> |
60 | <!-- Latest compiled and minified JavaScript --> | 60 | <!-- Latest compiled and minified JavaScript --> |
61 | <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script> | 61 | <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script> |
62 | </body> | 62 | </body> |
63 | </html> | 63 | </html> |
64 | 64 |