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

36 lines
888 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>
{% for m_entry in currentUser.matchhistoryEntries %}
{% include "partials/matchhistory-analysis-team-obj.html" %}
{% endfor %}
{% include "partials/matchhistory-analysis-team-obj.html" %}
<div class="row mt-3">
<button class="btn-primary">Add Match</div>
</div>
<div class="pb-3"></div>
</div>
{% include 'partials/footer.html' %}
</body>
</html>