19 lines
487 B
HTML
Raw Normal View History

2025-02-09 21:23:06 +00:00
<h1 class="title">Knowledge Article</h1>
<div class="box">
<h2 class="title">{{@article.title}}</h2>
<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>