blob: 99da96cc6836f2ff9639effc7a8b20d0f5552481 (
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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
{% extends 'base/layout.html' %}
{% block content %}
<div class="container">
<section class="hero is-info welcome is-small">
<div class="hero-body">
<div class="container">
<h1 class="title">
Hello, {{ current_user.username }}.
</h1>
<h2 class="subtitle">
%subtitle%
</h2>
</div>
</div>
</section>
<section class="info-tiles">
<div class="tile is-ancestor has-text-centered">
<div class="tile is-parent">
<article class="tile is-child box">
<p class="title has-text-black">%sets%</p>
<p class="subtitle has-text-black">Sets Completed</p>
</article>
</div>
<div class="tile is-parent">
<article class="tile is-child box">
<p class="title has-text-black">%workouts_completed%</p>
<p class="subtitle has-text-black">Workouts Completed</p>
</article>
</div>
<div class="tile is-parent">
<article class="tile is-child box">
<p class="title has-text-black">%workouts%</p>
<p class="subtitle has-text-black">Workouts</p>
</article>
</div>
<!-- Something else?
<div class="tile is-parent">
<article class="tile is-child box">
<p class="title">19</p>
<p class="subtitle">Exceptions</p>
</article>
</div> -->
</div>
</section>
<div class="columns">
<div class="column is-6">
<div class="card events-card">
<header class="card-header">
<p class="card-header-title">
Recent Workouts
</p>
</header>
<div class="card-table">
<div class="content">
<table class="table is-fullwidth is-striped">
<tbody>
<tr>
<td>Push Day</td>
<td>04/04/22 4:30 PM</td>
<td class="level-right"><a class="button is-small is-primary" href="#">View</a></td>
</tr>
<tr>
<td>Leg Day</td>
<td>04/02/22 2:13 PM</td>
<td class="level-right"><a class="button is-small is-primary" href="#">View</a></td>
</tr>
<tr>
<td>Pull Day</td>
<td>04/01/22 1:30 PM</td>
<td class="level-right"><a class="button is-small is-primary" href="#">View</a></td>
</tr>
</tbody>
</table>
</div>
</div>
<footer class="card-footer">
<a href="#" class="card-footer-item">View All</a>
</footer>
</div>
</div>
<div class="column is-6">
<div class="card">
<header class="card-header">
<p class="card-header-title">
Inventory Search
</p>
<a href="#" class="card-header-icon" aria-label="more options">
<span class="icon">
<i class="fa fa-angle-down" aria-hidden="true"></i>
</span>
</a>
</header>
<div class="card-content">
<div class="content">
<div class="control has-icons-left has-icons-right">
<input class="input is-large" type="text" placeholder="">
<span class="icon is-medium is-left">
<i class="fa fa-search"></i>
</span>
<span class="icon is-medium is-right">
<i class="fa fa-check"></i>
</span>
</div>
</div>
</div>
</div>
<div class="card">
<header class="card-header">
<p class="card-header-title">
User Search
</p>
<a href="#" class="card-header-icon" aria-label="more options">
<span class="icon">
<i class="fa fa-angle-down" aria-hidden="true"></i>
</span>
</a>
</header>
<div class="card-content">
<div class="content">
<div class="control has-icons-left has-icons-right">
<input class="input is-large" type="text" placeholder="">
<span class="icon is-medium is-left">
<i class="fa fa-search"></i>
</span>
<span class="icon is-medium is-right">
<i class="fa fa-check"></i>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
{% endblock %}
|