Skip to content

Commit

Permalink
Update builds.html
Browse files Browse the repository at this point in the history
  • Loading branch information
wvanheemstra authored Nov 20, 2024
1 parent 94de586 commit c82f548
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ <h1 class="text-2xl font-bold">Builds</h1>
<td class="py-2 px-4">{{ build.description }}</td>
<td class="py-2 px-4">{{ build.code }}</td>
<td class="py-2 px-4">
<a href="{{ url_for('build.view_build', build_id=build.id) }}" class="text-blue-500 hover:underline">View</a>
<a href="{{ url_for('build.edit_build', build_id=build.id) }}" class="text-blue-500 hover:underline">Edit</a>
<form action="{{ url_for('build.delete_build', build_id=build.id) }}" method="POST" style="display:inline;">
<button type="submit" class="text-red-500 hover:underline">Delete</button>
Expand Down Expand Up @@ -222,4 +223,4 @@ <h1 class="text-2xl font-bold">Builds</h1>
});
}
</script>-->
{% endblock %}
{% endblock %}

0 comments on commit c82f548

Please sign in to comment.