Files
oh-my-nemesis/templates/dashboardSubpages/self_analysis.html
Yannik Schmidt 90ccfcdf51 Initial (reset)
2021-07-30 00:42:41 +02:00

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>