17 lines
436 B
HTML
17 lines
436 B
HTML
<h1 class="title">Ticket - View</h1>
|
|
|
|
<div class="box">
|
|
|
|
<table class="table is-bordered is-fullwidth">
|
|
<thead>
|
|
<tr><th class="has-width-200">Property</th><th>Value</th></tr>
|
|
</thead>
|
|
<tbody>
|
|
<repeat group="{{ @ticket }}" key="{{ @key }}" value="{{ @value }}">
|
|
<tr><td>{{@key}}</td> <td>{{@value}}</td></tr>
|
|
</repeat>
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|