mirror of
https://github.com/FAUSheppy/oh-my-nemesis
synced 2025-12-09 16:18:33 +01:00
37 lines
899 B
HTML
37 lines
899 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="description" content="Leauge of Legends Coaching">
|
|
<title>Nemesis Coaching</title>
|
|
|
|
<!-- Bootstrap core CSS -->
|
|
{% include 'partials/header.html' %}
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% include 'partials/navbar.html' %}
|
|
|
|
<div role="main" class="p-5">
|
|
<div class="row mb-3">
|
|
<button id="save">Save All</button>
|
|
</div>
|
|
<div class="row border border-secondary p-2 mb-2">
|
|
{% for m_entry in currentUser.selfAnalysisEntries %}
|
|
{% include "partials/self-analysis-obj.html" %}
|
|
{% endfor %}
|
|
{% include "partials/self-analysis-obj.html" %}
|
|
</div>
|
|
<div class="row mt-3">
|
|
<button class="btn-primary">Add Match</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% include 'partials/footer.html' %}
|
|
</body>
|
|
|
|
</html>
|