1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-02 16:19:31 +00:00
Files
stratos/views/partials/dashboardTest.hbs

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>