mirror of
https://github.com/matt-fidd/stratos.git
synced 2026-01-02 09:39:30 +00:00
12 lines
290 B
Handlebars
12 lines
290 B
Handlebars
<tr data-id='{{ id }}'>
|
|
<td>{{ date }}</td>
|
|
<td>{{ name }}</td>
|
|
</tr>
|
|
|
|
<script>
|
|
document.querySelector('.adminTable tr[data-id="{{id}}"]').addEventListener('click', (e) => {
|
|
const test = e.path[1];
|
|
window.location.href = `/admin/test/${test.getAttribute('data-id')}`;
|
|
});
|
|
</script>
|