summaryrefslogtreecommitdiff
path: root/templates/project.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/project.html')
-rw-r--r--templates/project.html6
1 files changed, 6 insertions, 0 deletions
diff --git a/templates/project.html b/templates/project.html
index 076e0a2..e4fcfc8 100644
--- a/templates/project.html
+++ b/templates/project.html
@@ -2,5 +2,11 @@
{% block body %}
<h1>{{ project.name }}</h1>
<p>{{ project.description }}</p>
+ <p class="spacer"></p>
<p><a href="{{ project.link }}">Link</a></p>
{% endblock %}
+{% block admin_footer %}
+ &bullet; <a href="{{ url_for('edit_project', project_name=project.id) }}">Edit</a>
+ &bullet; <a href="{{ url_for('delete_project', project_name=project.id) }}" style="color:red;">Delete</a>
+{% endblock %}
+