Skip to content
Snippets Groups Projects
Commit f22ea5a9 authored by Ivan Procaccini's avatar Ivan Procaccini
Browse files

Feat: Add dummy edit and delete buttons

parent 75dd8f39
No related branches found
No related tags found
No related merge requests found
......@@ -4,12 +4,16 @@
<div class="w3-content">
<div class="w3-container">
<h1 class="w3-center">Projects</h1>
<h1 class="w3-center w3-text-teal">Your current project proposals</h1>
<div>
<ul class="w3-ul">
{% for project in projects %}
<li>
<li class="w3-display-container">
{{ project.title }}
<div class="w3-display-right">
<span class="w3-button w3-hover-teal">Edit</span>
<span class="w3-button w3-hover-teal">Delete</span>
</div>
</li>
{% endfor %}
</ul>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment