Files
SuperMega/app/templates/projects.html
T

22 lines
391 B
HTML

<!DOCTYPE html>
<html>
<head>
{% include 'header.html' %}
</head>
<body>
{% include 'navigation.html' %}
<div class="indent">
<h1> Projects </h1>
<ul>
{% for project in projects %}
<li><a href="/project/{{project.name}}">{{ project.name }}</a></li>
{% endfor %}
</ul>
<a href="/project_add">Add Project</a>
</div>
</body>
</html>