forked from madcowfred/evething
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.html
More file actions
79 lines (76 loc) · 3.4 KB
/
Copy pathbase.html
File metadata and controls
79 lines (76 loc) · 3.4 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script src="{{ STATIC_URL }}js/jquery.tablesorter.min.js"></script>
<script src="{{ STATIC_URL }}js/bootstrap.min.js"></script>
<script src="{{ STATIC_URL }}js/evething.js"></script>
<link rel="stylesheet" href="{{ STATIC_URL }}css/bootstrap.min.css">
<link rel="stylesheet" href="{{ STATIC_URL }}css/bootstrap-responsive.min.css">
<link rel="stylesheet" href="{{ STATIC_URL }}css/evething.css" />
{% block extra_head %}{% endblock %}
<title>EVEthing: {% block title %}{% endblock %}</title>
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="brand" href="https://github.com/madcowfred/evething">EVEthing</a>
<div class="nav-collapse">
<ul class="nav" id="nav-list">
<li><a href="{% url home %}"><i class="icon-home icon-white"></i>Home</a></li>
{% if user.is_authenticated %}
<li><a href="{% url thing.views.blueprints %}">Blueprints</a></li>
<li><a href="{% url thing.views.orders %}">Orders</a></li>
<li><a href="{% url thing.views.trade %}">Trade</a></li>
<li><a href="{% url thing.views.transactions %}">Transactions</a></li>
<li class="divider-vertical"></li>
<li><a href="{% url thing.views.market_scan %}">Market Scan</a></li>
<li class="divider-vertical"></li>
<li><a href="{% url thing.views.assets %}"><i class="icon-bell icon-white"></i> Assets</a></li>
<li><a href="#" style="text-decoration: line-through">Contracts</a></li>
<li><a href="#" style="text-decoration: line-through">Industry</a></li>
{% endif %}
</ul>
<ul class="nav pull-right">
<li class="navbar-text">
{% spaceless %}
{% if user.is_authenticated %}
{{ user.username }}
{% else %}
<a href="{% url auth_login %}">Login</a>
{% endif %}
{% endspaceless %}
</li>
{% if user.is_authenticated %}
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
<i class="icon-cog icon-white"></i>
<b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li><a href="{% url thing.views.apikeys %}">API keys</a></li>
<li><a href="{% url thing.views.events %}">Event log</a></li>
<li class="divider"></li>
<li><a href="{% url auth_password_change %}">Change Password</a></li>
<li class="divider"></li>
<li><a href="{% url auth_logout %}">Logout</a>
</ul>
</li>
{% endif %}
</ul>
</div>
</div>
</div>
</div>
<div class="container-fluid" id="container">
{% block content %}{% endblock %}
<hr class="nomargin">
<footer>
<p>© Freddie 2012</p>
</footer>
</div>
</body>
</html>