virt2/api/mod/jaddresume.html

107 lines
3.9 KiB
HTML
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{include file=$header title="Добавить резюме" h1="Добавить резюме"}
<div class='row'>
<div class='col-lg-3 col-md-3 col-sm-12 col-xs-12' style='border-right:1px solid lightgray;'>
{include file=$mnulk}
</div>
<div class='col-lg-9 col-md-9 col-sm-12 col-xs-12' style='border:0px solid gray;'>
<a class="btn btn-primary" href="/jmyvakans/" role="button">Назад в список</a>
<br><br>
<form method="post" action='/act/jaddresume' id="jeditorg_form" enctype='multipart/form-data'>
<select name="cat" class="input-text" id='cat'>
{section name=customer loop=$cat}
{if $cat[customer].id}
<option value="{$cat[customer].id}">{$cat[customer].cat}</option>
{/if}
{/section}
</select>
<br><br>
<select name="prof" class="input-text" id='prof'>
{section name=customer loop=$prof}
{if $prof[customer].id}
<option value="{$prof[customer].id}" data-chained="{$prof[customer].cat_id}">{$prof[customer].prof}</option>
{/if}
{/section}
</select>
<br><br>
<label for="nameorg">Желаемая зарплата (от .... )</label>
<input type='text' name='zp' class="input-text" value='{$bd.zp}'>
<label for="grafik">Желаемый график работы</label>
<select name="grafik" class="input-text" id='grafik'>
<option value="">Без разницы</option>
{section name=customer loop=$grafik}
{if $grafik[customer].id}
<option value="{$grafik[customer].id}">{$grafik[customer].grafik}</option>
{/if}
{/section}
</select>
<label for="grafik">Семейное положение</label>
<select name="sp" class="input-text" id='sp'>
{section name=customer loop=$sp}
{if $sp[customer].id}
<option value="{$sp[customer].id}">{$sp[customer].sp}</option>
{/if}
{/section}
</select>
<label for="grafik">Есть ли у вас дети?</label>
<select name="deti" class="input-text" id='deti'>
{section name=customer loop=$deti}
{if $deti[customer].id}
<option value="{$deti[customer].id}">{$deti[customer].deti}</option>
{/if}
{/section}
</select>
<label for="grafik">Есть ли у автомобиль?</label>
<select name="avto" class="input-text" id='avto'>
{section name=customer loop=$avto}
{if $avto[customer].id}
<option value="{$avto[customer].id}">{$avto[customer].avto}</option>
{/if}
{/section}
</select>
<label for="kom">Вы готовы к командировкам?</label>
<select name="kom" class="input-text" id='kom'>
{section name=customer loop=$kom}
{if $kom[customer].id}
<option value="{$kom[customer].id}">{$kom[customer].kom}</option>
{/if}
{/section}
</select>
<input type='hidden' name='act' value='save'>
<label for="grafik">Контактный телефон</label>
<input type='text' name='tel' class="input-text" value='{$bd.tel}'>
<label for="grafik">Город где хотите работать</label>
<input type='text' name='gorod' class="input-text" value='{$bd.gorod}'>
<label for="nameorg">Срок</label>
<input type='text' name='srok' id='srok' class="input-text" value='{$bd.srok}' placeholder='дд.мм.гггг' maxlength=10>
<br><br>
<div class="form-group form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1" name='public'>
<label class="form-check-label" for="exampleCheck1">Публиковать?</label>
</div>
<input class="button" type="submit" value="Сохранить" name="ok">
<div class="alert alert-success hidden" role="alert" id="res_msg">
Резюме успешно добавлено
</div>
</form>
</div>
</div>
{include file=$footer plugins='
<script src="/api/jquery/plugins/jquery_chained-2.x/jquery.chained.min.js"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="/api/jquery/plugins/jqueryui/datepicker-ru.js"></script>
'}