changed git call from https to git readonly
[atutor.git] / mods / job_board / include / html / admin / jb_preferences.tmpl.php
1 <?php global $_config; ?>
2 <div class="input-form">
3         <form action="" method="post">
4                 <div class="row">
5                         <label><?php echo _AT('jb_required_posting_approval'); ?></label>
6                         <label for="jb_posting_approval_yes"><?php echo _AT('yes'); ?></label>
7                         <input type="radio" id="jb_posting_approval_yes" name="jb_posting_approval" value="1" <?php echo ($_config['jb_posting_approval']==1)?'checked="checked"':''; ?> />
8                         <label for="jb_posting_approval_no"><?php echo _AT('no'); ?></label>
9                         <input type="radio" id="jb_posting_approval_no" name="jb_posting_approval" value="0" <?php echo ($_config['jb_posting_approval']==0)?'checked="checked"':''; ?> />
10                 </div>
11                 
12                 <div class="row">
13                         <input class="button" type="submit" name="submit" value="<?php echo _AT('submit'); ?>" />
14                 </div>
15         </form>
16 </div>