| 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 $roadmap->id;?></span>
- <span title='<?php echo $roadmap->name;?>'><?php echo $roadmap->name;?></span>
- </h2>
- </div>
- <form class="load-indicator main-form" method='post' target='hiddenwin' enctype='multipart/form-data' id='dataform'>
- <table class="table table-form">
- <tbody>
- <tr>
- <th class='thWidth'><?php echo $lang->story->closedReason;?></th>
- <td class='w-p25-f'><?php echo html::select('closedReason', $this->lang->roadmap->reasonList, '', 'class="form-control"');?></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->roadmap->close);?></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';?>
|