| 1234567891011121314151617181920212223242526272829303132 |
- <?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
- <?php include $app->getModuleRoot() . 'common/view/kindeditor.html.php';?>
- <div id="mainContent" class="main-content fade">
- <div class="center-block">
- <div class="main-header">
- <h2>
- <span class='label label-id'><?php echo $demand->id;?></span>
- <span title='<?php echo $demand->title;?>'><?php echo $demand->title;?></span>
- </h2>
- </div>
- <form class="load-indicator main-form form-ajax" method='post' enctype='multipart/form-data' id='dataform'>
- <table class="table table-form">
- <tbody>
- <tr>
- <th class='w-100px'><?php echo $lang->demand->assignedTo;?></th>
- <td class='w-p45'><?php echo html::select('assignedTo', $users, $demand->closedBy, 'class="form-control chosen"');?></td><td></td>
- </tr>
- <tr>
- <th><?php echo $lang->comment;?></th>
- <td colspan='3'><?php echo html::textarea('comment', '', "rows='6' class='form-control'");?></td>
- </tr>
- <tr>
- <td class='form-actions text-center' colspan='4'><?php echo html::submitButton($lang->demand->activate);?></td>
- </tr>
- </tbody>
- </table>
- </form>
- <hr/>
- <?php include $app->getModuleRoot() . 'common/view/action.html.php';?>
- </div>
- </div>
- <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>
|