mirror of
https://github.com/dobin/SuperMega
synced 2026-06-02 17:27:10 +00:00
22 lines
418 B
HTML
22 lines
418 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{% include 'header.html' %}
|
|
</head>
|
|
<body>
|
|
{% include 'navigation.html' %}
|
|
|
|
<div class="indent">
|
|
|
|
<h1> Projects </h1>
|
|
|
|
<ul>
|
|
{% for settings in project_settings %}
|
|
<li><a href="/project/{{settings.project_name}}">{{ settings.project_name }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
<a href="/project_add">Add Project</a>
|
|
</div>
|
|
</body>
|
|
</html> |