diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2022-06-13 21:03:34 +0200 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2022-06-13 21:07:54 +0200 |
commit | f1fd665089dd6b0a1fa4fc72a64db3cbf0b6d5f5 (patch) | |
tree | 7d9fe5031671cdf5fd8da3e031966c72a358942e /templates | |
parent | f13a07aa433298de91e1c4aff68f72be6d851be2 (diff) | |
download | mdir-f1fd665089dd6b0a1fa4fc72a64db3cbf0b6d5f5.tar.gz mdir-f1fd665089dd6b0a1fa4fc72a64db3cbf0b6d5f5.tar.bz2 mdir-f1fd665089dd6b0a1fa4fc72a64db3cbf0b6d5f5.zip |
feat: Add poor implementation for the worker
This is just me testing a bit how doworker works, while I learn of
go/gin in the process.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/index.tmpl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/templates/index.tmpl b/templates/index.tmpl index a392761..1880b5f 100644 --- a/templates/index.tmpl +++ b/templates/index.tmpl @@ -16,8 +16,9 @@ <td>{{ .Link }}</td> <td>{{ .Output_folder }}</td> <td> - <a href="entries/{{ .ID }}" role="button">Edit</a> - <a href="#" onclick="deleteEntry({{ .ID }})" role="button" class="secondary">Delete</a> + <a href="entries/{{ .ID }}" >Edit</a> + </span> + <a href="#" onclick="deleteEntry({{ .ID }})">Delete</a> </td> </tr> {{ end }} |