| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?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><?php echo $lang->market->edit;?></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->market->name;?></th>
- <td><?php echo html::input('name', $market->name, "class='form-control'");?></td>
- <td></td>
- </tr>
- <tr>
- <th><?php echo $lang->market->industry;?></th>
- <td><?php echo html::input('industry', $market->industry, "class='form-control'");?></td>
- </tr>
- <tr>
- <th><?php echo $lang->market->scale;?></th>
- <td>
- <div class="input-group">
- <?php echo html::input('scale', $market->scale != 0.00 ? $market->scale : '', "class='form-control'");?>
- <span class="input-group-addon"><?php echo $lang->market->hundredMillion;?></span>
- </div>
- </td>
- </tr>
- <tr>
- <th><?php echo $lang->market->speed;?></th>
- <td><?php echo html::select('speed', $lang->market->speedList, $market->speed, "class='form-control picker-select'");?></td>
- </tr>
- <tr>
- <th><?php echo $lang->market->maturity;?></th>
- <td><?php echo html::select('maturity', $lang->market->maturityList, $market->maturity, "class='form-control picker-select'");?></td>
- </tr>
- <tr>
- <th><?php echo $lang->market->competition;?></th>
- <td><?php echo html::select('competition', $lang->market->competitionList, $market->competition, "class='form-control picker-select'");?></td>
- </tr>
- <tr>
- <tr>
- <th><?php echo $lang->market->ppm;?></th>
- <td><?php echo html::select('ppm', $lang->market->ppmList, $market->ppm, "class='form-control picker-select'");?></td>
- <td>
- <icon class='icon icon-help' data-toggle='popover' data-trigger='focus hover' data-placement='right' data-tip-class='text-muted popover-lg tipWidth' data-html='true' data-content="<?php echo htmlspecialchars($lang->market->tips);?>"></icon>
- </td>
- </tr>
- <tr>
- <th><?php echo $lang->market->strategy;?></th>
- <td><?php echo html::select('strategy', $lang->market->strategyList, $market->strategy, "class='form-control picker-select'");?></td>
- </tr>
- <th><?php echo $lang->market->desc;?></th>
- <td colspan='2'><?php echo html::textarea('desc', $market->desc, "class='form-control'");?></td>
- </tr>
- <tr>
- <td class='form-actions text-center' colspan='3'><?php echo html::submitButton() . html::backButton();?></td>
- </tr>
- </tbody>
- </table>
- </form>
- </div>
- </div>
- <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>
|