mirror of
https://github.com/Karaka-Management/oms-Accounting.git
synced 2026-01-31 05:38:40 +00:00
Language is now no longer direct array access but provided through a function. This can be later used to hot load language files instead of pre-loading them.
12 lines
524 B
PHP
12 lines
524 B
PHP
<template id="entry-list-tpl">
|
|
<div id="entry-list" class="box" style="z-index: 99; position: relative; top: 20px; display: block; margin: 0 auto; width: 20%;">
|
|
<table class="table">
|
|
<caption><?= $this->l11n->getText('Accounting', 'Accounts'); ?></caption>
|
|
<thead>
|
|
<tr>
|
|
<td><?= $this->l11n->getText(0, 'ID'); ?>
|
|
<td class="wf-100"><?= $this->l11n->getText('Accounting', 'Account'); ?>
|
|
<tbody>
|
|
</table>
|
|
</div>
|
|
</template>
|