Я пытаюсь добавить кнопку как элемент строки в таблицу Pug.
Но кнопка не вставляется в определенный ряд
Ниже приведен код мопса
table
tr#headtag
th DishName
th Quantity
th Currently_Done
th Predicted
th
each order in orders
tr
th=order.dish.name
th=order.numberOfQuantity
th=order.dish.predictedValue
th=order.dish.predictedValue
th=button(class="btn btn-small", type="button") Slett
Получение «Что-то не удалось» в браузере
Без кода кнопки работает нормально.
table
tr#headtag
th DishName
th Quantity
th Currently_Done
th Predicted
each order in orders
tr
th=order.dish.name
th=order.numberOfQuantity
th=order.dish.predictedValue
th=order.dish.predictedValue