emailparser/templates/index.html

38 lines
874 B
HTML
Raw Normal View History

2012-05-28 03:03:18 +02:00
<!doctype html>
<html>
<head>
<title>%(page)s - %(pagenum)s - %(title)s</title>
<link rel="stylesheet" href="style.css">
2012-05-28 08:06:03 +02:00
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>
$(function(){
$('.clickable').click(function(){
window.location = $(this).data('url');
});
});
</script>
2012-05-28 03:03:18 +02:00
</head>
<body>
<h1>%(title)s</h1>
<a href="%(index)s" class="back">&lt;&lt; back to index</a>
<div class="main">
<h2>%(page)s</h2>
<h3>%(pagenum)s</h3>
<table class="message message-list">
<tbody>
<tr>
2012-05-28 05:42:57 +02:00
<th class="hash">SHA1 hash</th>
<th class="from">From</th>
<th class="to">To</th>
<th class="subject">Subject</th>
<th class="date">Date</th>
<th class="attachments">Att.</th>
2012-05-28 03:03:18 +02:00
</tr>
%(items)s
</tbody>
</table>
</div>
</body>
</html>