Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
wvanheemstra committed Nov 9, 2024
1 parent f359b1a commit e790907
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ <h1 class="text-2xl font-bold">Builds</h1>
<tr class="bg-gray-200">
<th class="py-2 px-4 border">Title</th>
<th class="py-2 px-4 border">Description</th>
<th class="py-2 px-4 border">Code</th>
<th class="py-2 px-4 border">Actions</th>
</tr>
</thead>
Expand All @@ -21,6 +22,7 @@ <h1 class="text-2xl font-bold">Builds</h1>
<tr class="border-b">
<td class="py-2 px-4">{{ build.title }}</td>
<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.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;">
Expand Down

0 comments on commit e790907

Please sign in to comment.