1
0
mirror of https://github.com/matt-fidd/stratos.git synced 2026-01-02 15:39:26 +00:00
Files
stratos/views/partials/test.hbs
2022-03-03 02:06:16 +00:00

14 lines
337 B
Handlebars

<tr data-id='{{ id }}'>
<td>{{ name }}</td>
<td>{{ class }}</td>
<td>{{ subject }}</td>
<td>{{ date }}</td>
</tr>
<script>
document.querySelector('.tests tbody tr[data-id="{{id}}"]').addEventListener('click', (e) => {
const test = e.path[1];
window.location.href = `/admin/test/${test.getAttribute('data-id')}`;
});
</script>