poma1

<?php echo $header; ?>

Oct 15th, 2016
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.27 KB | None | 0 0
  1.     <section id="maincontent" class="<?php echo $main; ?>" role="main">
  2.                                 <div class="mainborder">
  3.                                     <?php if ($column_left || $column_right) { ?>
  4.                                     <div id="toggle_sidebar"></div>
  5.                                     <?php } ?>
  6.  
  7.                                     <table class="table table-bordered">
  8.  
  9.                                         <thead>
  10.                                         <tr>
  11.                                             <td colspan="2">
  12.                                                 <?php echo "ПРИЧИНА ВОЗВРАТА"; ?>
  13.                                             </td>
  14.                                         </tr>
  15.                                         </thead>
  16.  
  17.                                         <tbody>
  18.                                         <tr>
  19.                                             <td style="width: 50%;">
  20.                                                 <div class="form-group">
  21.                                                     <?php foreach ($return_reasons as $return_reason) { ?>
  22.  
  23.                                                     <div class="radio">
  24.                                                         <label>
  25.                                                             <?php if ($return_reason['return_reason_id'] == $return_reason_id) { ?>
  26.                                                             <input type="radio" name="order_status_id" value="<?php echo $return_reason['return_reason_id']; ?>" id="return-status-id<?php echo $return_reason['return_reason_id']; ?>" checked="checked" />
  27.                                                             <?php echo $return_reason['name']; ?>
  28.                                                             <?php } else { ?>
  29.                                                             <input type="radio" name="order_status_id" value="<?php echo $return_reason['return_reason_id']; ?>" id="return-status-id<?php echo $return_reason['return_reason_id']; ?>" />
  30.                                                             <?php echo $return_reason['name']; ?>
  31.                                                             <?php  } ?>
  32.                                                         </label>
  33.                                                     </div>
  34.  
  35.                                                     <?php  } ?>
  36.  
  37.                                                     <?php if ($error_reason) { ?>
  38.                                                     <span class="error"><?php echo $error_reason; ?></span>
  39.                                                     <?php } ?>
  40.  
  41.                                                 </div>
  42.                                             </td>
  43.                                             <td>
  44.                                                 <div class="form-group">
  45.                                                     <label for="comment"><?php echo $entry_fault_detail; ?></label>
  46.                                                     <textarea name="comment" id="comment" cols="150" rows="6" class="form-control"><?php echo $comment; ?></textarea>
  47.                                                 </div>
  48.                                             </td>
  49.                                         </tr>
  50.                                         </tbody>
  51.  
  52.                                     </table>
  53.  
  54.                                     <div class="form-actions" style="text-align: center">
  55.                                         <a href="<?php echo $back; ?>" class="button button-default"><?php echo $button_back; ?></a>
  56.                                         <input type="submit" value="<?php echo $button_continue; ?>" class="button button-default button-inverse" />
  57.                                     </div>
  58.  
  59.                             </section> <!-- #maincontent -->
  60.                 </form>
Advertisement
Add Comment
Please, Sign In to add comment