| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
- <?php include $app->getModuleRoot() . 'common/view/datepicker.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><?php echo $lang->demandpool->create;?></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-140px'><?php echo $lang->demandpool->name;?></th>
- <td><?php echo html::input('name', '', "class='form-control'");?></td>
- </tr>
- <tr>
- <th><?php echo $lang->demandpool->owner;?></th>
- <td><?php echo html::select('owner[]', $users, $app->user->account, "class='form-control chosen' multiple");?></td>
- </tr>
- <tr>
- <th><?php echo $lang->demandpool->reviewer;?></th>
- <td><?php echo html::select('reviewer[]', $users, '', "class='form-control chosen' multiple");?></td>
- </tr>
- <tr>
- <th><?php echo $lang->demandpool->products;?></th>
- <td><?php echo html::select('products[]', $products, '', "class='form-control picker-select' multiple data-placeholder='" . $lang->demandpool->bindProductsTips . "'");?></td>
- </tr>
- <tr>
- <th><?php echo $lang->demandpool->desc;?></th>
- <td><?php echo html::textarea('desc', '', "class='form-control'");?></td>
- </tr>
- <tr>
- <th><?php echo $lang->demandpool->acl;?></th>
- <td><?php echo nl2br(html::radio('acl', $lang->demandpool->aclList, 'open', '', 'block'));?></td>
- </tr>
- <tr>
- <td class='form-actions text-center' colspan='2'><?php echo html::submitButton() . html::backButton();?></td>
- </tr>
- </tbody>
- </table>
- </form>
- </div>
- </div>
- <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>
|