summaryrefslogtreecommitdiff
path: root/core/views/quick_edit.html.php
blob: 30baf4f81f8662784fb8b3d46abd6e30fb71100a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<? if ($item->type == "photo"): ?>
<div class="rotate-counter-clockwise"
     quickedit_link="<?= url::site("quick/rotate/$item->id/ccw?csrf=" . access::csrf_token()) ?>">
  <span>
    <?= _("Rotate CCW") ?>
  </span>
</div>
<div class="rotate-clockwise"
     quickedit_link="<?= url::site("quick/rotate/$item->id/cw?csrf=" . access::csrf_token()) ?>">
  <span>
    <?= _("Rotate CCW") ?>
  </span>
</div>
<? endif ?>