summaryrefslogtreecommitdiff
path: root/modules/organize/views/organize_edit.html.php
blob: 1085a863b545c05a3f79d3968178d55e21d8c212 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php defined("SYSPATH") or die("No direct script access.") ?>
<div id="gOrganizeForm">
  <?= form::open(url::site("organize/update/__ITEM_ID__?csrf=__CSRF__&action=__ACTION__"), array("method" => "post")) ?>
  <div id="gOrganizeFormThumbs">
    <div id="gOrganizeFormNoImage">
      <h3><?= t("No Image Selected") ?></h3>
    </div>
    <div id="gOrganizeFormThumb" style="display: none"></div>
    <div id="gOrganizeFormMultipleImages" style="display:none">
      <h3><?= t("Multiple Images Selected") ?></h3>
    </div>
  </div>

  <div id="gOrganizeButtonPane" style="display: none">
    <?= $button_pane ?>
  </div>
  
  <div id="gOrganizeFormInfo" style="display:none"
       ref="<?= url::site("organize/detail/__ITEM_ID__") ?>">
    <ul>
        <li>
          Title: <span id="gOrganizeFormTitle"></span>
        </li>
        <li>
          Owner: <span id="gOrganizeFormOwner"></span>
         </li>
        <li>
          Date: <span id="gOrganizeFormDate"></span>
        </li>
        <li>
          Description: <span id="gOrganizeFormDescription">&nbsp;</span>
        </li>
    </ul>
  </div>
  
  <span id="gOrganizeFormButtons">
    <?= form::submit(array("id" => "gOrganizePauseButton", "name" => "pause", "disabled" => true, "class" => "submit", "style" => "display:none"), t("Pause")) ?>
    <?= form::submit(array("id" => "gOrganizeApplyButton", "name" => "apply", "disabled" => true, "class" => "submit"), t("Apply")) ?>
  </span>
  <?= form::close() ?>
</div>