Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <section id="maincontent" class="<?php echo $main; ?>" role="main">
- <div class="mainborder">
- <?php if ($column_left || $column_right) { ?>
- <div id="toggle_sidebar"></div>
- <?php } ?>
- <table class="table table-bordered">
- <thead>
- <tr>
- <td colspan="2">
- <?php echo "ПРИЧИНА ВОЗВРАТА"; ?>
- </td>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td style="width: 50%;">
- <div class="form-group">
- <?php foreach ($return_reasons as $return_reason) { ?>
- <div class="radio">
- <label>
- <?php if ($return_reason['return_reason_id'] == $return_reason_id) { ?>
- <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" />
- <?php echo $return_reason['name']; ?>
- <?php } else { ?>
- <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']; ?>" />
- <?php echo $return_reason['name']; ?>
- <?php } ?>
- </label>
- </div>
- <?php } ?>
- <?php if ($error_reason) { ?>
- <span class="error"><?php echo $error_reason; ?></span>
- <?php } ?>
- </div>
- </td>
- <td>
- <div class="form-group">
- <label for="comment"><?php echo $entry_fault_detail; ?></label>
- <textarea name="comment" id="comment" cols="150" rows="6" class="form-control"><?php echo $comment; ?></textarea>
- </div>
- </td>
- </tr>
- </tbody>
- </table>
- <div class="form-actions" style="text-align: center">
- <a href="<?php echo $back; ?>" class="button button-default"><?php echo $button_back; ?></a>
- <input type="submit" value="<?php echo $button_continue; ?>" class="button button-default button-inverse" />
- </div>
- </section> <!-- #maincontent -->
- </form>
Advertisement
Add Comment
Please, Sign In to add comment