7 lines
352 B
HTML
7 lines
352 B
HTML
|
<tr id="job_{{ job.id }}">
|
||
|
<!-- <td>{{ job.id }}</td> -->
|
||
|
<td>{{ job.zone.number|string}}</td>
|
||
|
<td>{{job.zone.name }}</td>
|
||
|
<td>{{ ((job.duration/60)|int)|string + " " + translater.getTranslation("minutes")}}</td>
|
||
|
<td><button onclick="buttonDeleteJobById('{{ job.id }}')">{{ translater.getTranslation("delete") }}</button></td>
|
||
|
</tr>
|