diff options
Diffstat (limited to 'hosted')
-rw-r--r-- | hosted/edit.html | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/hosted/edit.html b/hosted/edit.html index 4e49b20..701dd0f 100644 --- a/hosted/edit.html +++ b/hosted/edit.html @@ -60,7 +60,16 @@ <td>{{.Category}}</td> <td>{{.Points}}</td> <td>{{.Static}}</td> - <td><a href="/edit?uuid={{.UUID}}" class="btn btn-primary" role="button">Edit</a></td> + <td> + + <button type="button" class="btn btn-primary btn-sm btn-block"> + <a href="/edit?uuid={{.UUID}}" style="color:inherit"> Edit </a> + </button> + <button type="button" class="btn btn-danger btn-sm btn-block"> + <a href="/delete?uuid={{.UUID}}" style="color:inherit"> Delete </a> + </button> + + </td> </tr> {{end}} </tbody> |