aboutsummaryrefslogtreecommitdiff
path: root/app/templates/index.html
blob: 541b230cf90029b085b78f9177388751bf8eb12f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{% extends "base.html" %}

{% block title %}
Dashboard
{% endblock %}

{% block content %}
	<div class="box box_grey">
		<h2>{{ self.title() }}</h2>

		{% if current_user.is_authenticated %}
			<p>
				Hello user!
			</p>
		{% else %}
			<p>
				Please login!
			</p>
		{% endif %}
	</div>

	<div class="2box">
		<div class="box box_grey">
			<h2>Top Mods</h2>
		</div>
		<div class="box box_grey">
			<h2>Statistics</h2>
			<ul>
				<li>Total mods: 543</li>
				<li>Missing mods: 1020</li>
				<li>Downloads/day: 200</li>
			</ul>
		</div>
	</div>
{% endblock %}