cat/resources/html/home.html

252 lines
8.8 KiB
HTML
Raw Normal View History

2019-01-11 22:10:58 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Welcome to cat</title>
<script src="https://cdn.jsdelivr.net/npm/vega@4.4.0"></script>
</head>
<body>
2019-01-12 01:00:08 +00:00
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item">
<img src="/img/cat_hollow_purple.png" width="28" height="28">
</a>
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false"
data-target="navbarBasicExample">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarBasicExample" class="navbar-menu">
2019-01-12 01:22:56 +00:00
2019-01-12 01:00:08 +00:00
<div class="navbar-start">
2019-01-12 01:22:56 +00:00
<div class="navbar-item">
{% if user %}
2019-01-14 01:39:40 +00:00
Hello {{ user.username }}
2019-01-12 01:22:56 +00:00
{% else %}
Please login to use the graph
{% endif %}
</div>
2019-01-12 01:00:08 +00:00
2019-01-12 01:22:56 +00:00
<!--
2019-01-12 01:00:08 +00:00
<a class="navbar-item">
Documentation
</a>
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link">
More
</a>
<div class="navbar-dropdown">
<a class="navbar-item">
About
</a>
<a class="navbar-item">
Jobs
</a>
<a class="navbar-item">
Contact
</a>
<hr class="navbar-divider">
<a class="navbar-item">
Report an issue
</a>
</div>
</div>
-->
2019-01-12 01:22:56 +00:00
</div>
2019-01-12 01:00:08 +00:00
<div class="navbar-end">
<div class="navbar-item">
<div class="buttons">
{% if user.admin %}
{% if user.admin.enabled %}
<a class="button is-light" href="/admin/disable">
<strong>Disable admin</strong>
</a>
{% else %}
<a class="button is-light" href="/admin/enable">
<strong>Enable admin</strong>
</a>
{%endif%}
{% endif %}
2019-01-14 01:39:40 +00:00
{% if user %}
<a class="button is-light" href="/logout">
<strong>Logout</strong>
</a>
{% else %}
<a class="button is-info" href="/oauth/oauth-init">
2019-01-12 01:00:08 +00:00
Log in
</a>
2019-01-14 01:39:40 +00:00
{% endif %}
2019-01-12 01:00:08 +00:00
</div>
</div>
</div>
</div>
</nav>
2019-01-11 23:46:19 +00:00
<section class="section">
<div class="container">
<div id="view">
<div style="width: 400px; height: 300px"></div>
</div>
2019-01-12 01:00:08 +00:00
</div>
2019-01-11 23:46:19 +00:00
</section>
{% if user.admin.enabled %}
2019-01-11 23:46:19 +00:00
<section class="section">
<div class="columns">
<div class="column">
<h3 class="title is-3">Little humans</h3>
<div>
2019-01-12 01:22:56 +00:00
<h3 class="subtitle is-4">Add human</h3>
2019-01-11 23:46:19 +00:00
<form action="/users" method="post">
{% csrf-field %}
<div class="field">
<label class="label" for="name">Name</label>
<div class="control">
<input class="input" type="text" name="name" id="name" placeholder="Foo bar">
</div>
</div>
<div class="field">
<label class="label" for="gender">Gender</label>
<div class="control">
<input class="input" type="text" name="gender" id="gender" placeholder="racetrack">
</div>
</div>
<div class="field">
<div class="control">
<input class="button is-link" type="submit" value="Submit">
</div>
</div>
</form>
2019-01-11 22:10:58 +00:00
</div>
2019-01-11 23:46:19 +00:00
<table class="table">
<thead>
<tr>
<th>Name</th>
<th>Gender</th>
</tr>
</thead>
<tbody>
{% for user in users %}
<tr>
<td>{{user.name}}</td>
<td>{{user.gender}}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
<div class="column">
<h3 class="title is-3">Cozy cuddles</h3>
<div>
2019-01-12 01:22:56 +00:00
<h3 class="subtitle is-4">Add cuddle</h3>
2019-01-11 23:46:19 +00:00
<form action="/relations" method="post">
{% csrf-field %}
<div class="field">
<label for="from">Person from</label>
<div class="control">
<div class="select">
2019-01-11 23:29:04 +00:00
<select name="from_id" id="from">
{% for user in users %}
<option value="{{user.id}}">{{user.name}}</option>
{% endfor %}
</select>
</div>
2019-01-11 23:46:19 +00:00
</div>
</div>
<div class="field">
<label for="to">Person to</label>
<div class="control">
<div class="select">
2019-01-11 23:29:04 +00:00
<select name="to_id" id="to">
{% for user in users %}
<option value="{{user.id}}">{{user.name}}</option>
{% endfor %}
</select>
</div>
</div>
2019-01-11 23:46:19 +00:00
</div>
<div class="field">
<div class="control">
<input class="button is-link" type="submit" value="Submit">
</div>
</div>
</form>
2019-01-11 22:10:58 +00:00
</div>
2019-01-11 23:46:19 +00:00
<table class="table">
<thead>
<tr>
<th>Person 1</th>
<th>Person 2</th>
</tr>
</thead>
<tbody>
{% for relation in relations %}
<tr>
<td>{{relation.name}}</td>
<td>{{relation.name_2}}</td>
</tr>
{% endfor %}
</tbody>
</table>
2019-01-11 22:10:58 +00:00
</div>
</div>
2019-01-11 23:46:19 +00:00
</section>
{% endif %}
2019-01-11 23:46:19 +00:00
<section class="section">
<div id="app">
2019-01-12 01:00:08 +00:00
<div class="container">
<h4>Welcome to cat</h4>
<p>If you're seeing this message, that means you haven't yet compiled your ClojureScript!</p>
<p>Please run <code>lein figwheel</code> to start the ClojureScript compiler and reload the page.
</p>
<h4>For better ClojureScript development experience in Chrome follow these steps:</h4>
<ul>
<li>Open DevTools
<li>Go to Settings ("three dots" icon in the upper right corner of DevTools > Menu > Settings F1
>
General > Console)
<li>Check-in "Enable custom formatters"
<li>Close DevTools
<li>Open DevTools
</ul>
<p>See <a href="http://www.luminusweb.net/docs/clojurescript.md">ClojureScript</a> documentation for
further details.</p>
2019-01-11 22:10:58 +00:00
</div>
</div>
2019-01-11 23:46:19 +00:00
</section>
2019-01-12 01:00:08 +00:00
<footer class="footer">
<div class="content has-text-centered">
<div>Icons made by
<a href="https://www.freepik.com/" title="Freepik">Freepik</a> from <a
href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a> is licensed by <a
href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC
3.0
BY</a>
</div>
</div>
</footer>
2019-01-11 22:10:58 +00:00
<!-- scripts and styles -->
2019-01-12 01:00:08 +00:00
{% style "/assets/bulma/css/bulma.css" %}
2019-01-11 22:10:58 +00:00
{% style "/assets/font-awesome/css/all.css" %}
{% style "/css/screen.css" %}
2019-01-12 01:00:08 +00:00
{% script "/js/home.js" %}
2019-01-11 22:10:58 +00:00
{% script "/assets/font-awesome/js/all.js" %}
<script type="text/javascript">
var csrfToken = "{{csrf-token}}";
</script>
2019-01-12 01:00:08 +00:00
{% script "/js/app.js" %} <!-- Compiled clojurescript -->
2019-01-11 22:10:58 +00:00
2019-01-12 01:00:08 +00:00
{% script "/js/graphing.js" %} <!-- Vega graphing -->
2019-01-11 22:10:58 +00:00
</body>
</html>