diff options
Diffstat (limited to 'app/view/templates')
-rw-r--r-- | app/view/templates/edittabs.php | 2 | ||||
-rw-r--r-- | app/view/templates/navart.php | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/app/view/templates/edittabs.php b/app/view/templates/edittabs.php index 5d74ef1..62d86ad 100644 --- a/app/view/templates/edittabs.php +++ b/app/view/templates/edittabs.php @@ -7,7 +7,7 @@ foreach ($tablist as $key => $value) { <input name="interface" type="radio" value="<?= $key ?>" id="tab<?= $key ?>" class="checkboxtab" <?= $key == $opentab ? 'checked' : '' ?> > - <label for="tab<?= $key ?>"><?= empty($template[$key]) ? $key : '<a class="templatetooltip" title="'.$template[$key].'" >*</a>'.$key ?> </label> + <label for="tab<?= $key ?>" <?= empty($template[$key]) ? '' : 'title="'.$template[$key].'" ' ?> class="<?= empty($template[$key]) ? '' : 'template' ?> <?= empty($value) ? '' : 'edited' ?>"><?= $key ?> </label> <?php diff --git a/app/view/templates/navart.php b/app/view/templates/navart.php index d3baef5..45e9cda 100644 --- a/app/view/templates/navart.php +++ b/app/view/templates/navart.php @@ -97,6 +97,9 @@ <li class="drop"> <a class="button" href="<?= $this->uart('artedit', $art->id()) ?>" >edit</a> </li> + <li class="drop"> + <a class="button" href="<?= $this->uart('artrender', $art->id()) ?>" >render</a> + </li> <?php } ?> |