EVOLUTION-NINJA
Edit File: feedback_details.php
<?php echo view('includes/admin_header.php')?> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header"> </section> <!-- Main content --> <!-- Button trigger modal --> <section class="feedback"> <div class="container"> <div class="col-sm-8 feedback_div"> <h1 style="padding-bottom:10px;border-bottom:2px dashed #468662;margin-bottom:20px; font-weight: bold;">Feedback Details</h1> <a href="javascript:history.back()" class="btn btn-primary" style="float: right;">Back</a> <div class="row" style="margin-top: 30px"> <div class="col-sm-3"> <h5>Program Name : </h5> </div> <div class="col-sm-9 feedback_name"> <?php echo $feedback->course_title; ?> </div> </div> <div class="row"> <div class="col-sm-3"> <h5>Instructor Name : </h5> </div> <div class="col-sm-9 feedback_name"> <?php echo $feedback->username; ?> </div> </div> <hr> <form class=""> <?php if($session_type == 'Live') { ?> <div class="facilitator_instructor"> <h4>Facilitator / Instructor</h4> <div class="form-group feedback_radio"> <p>The instructor had professional credibility and demonstrated in-depth knowledge of the topic.</p> <label class="radio-inline"><input <?php if($feedback->knowledge == 'Strongly Disagree') echo 'checked="checked"'; ?> type="radio" name="optradio" disabled='disabled'>Strongly Disagree</label> <label class="radio-inline"><input <?php if($feedback->knowledge == 'Disagree') echo 'checked="checked"'; ?> type="radio" name="optradio" disabled='disabled'>Disagree</label> <label class="radio-inline"><input <?php if($feedback->knowledge == 'Neutral') echo 'checked="checked"'; ?> type="radio" name="optradio" disabled='disabled'>Neutral</label> <label class="radio-inline"><input <?php if($feedback->knowledge == 'Agree') echo 'checked="checked"'; ?> type="radio" name="optradio" disabled='disabled'>Agree</label> <label class="radio-inline"><input <?php if($feedback->knowledge == 'Strongly Agree') echo 'checked="checked"'; ?> type="radio" name="optradio" disabled='disabled'>Strongly Agree</label> </div> <div class="form-group feedback_radio"> <p>The instructor was responsive to participant's questions and comments</p> <label class="radio-inline"><input <?php if($feedback->questions_comments == 'Strongly Disagree') echo 'checked="checked"'; ?> type="radio" name="questions_comments" disabled='disabled'>Strongly Disagree</label> <label class="radio-inline"><input <?php if($feedback->questions_comments == 'Disagree') echo 'checked="checked"'; ?> type="radio" name="questions_comments" disabled='disabled'>Disagree</label> <label class="radio-inline"><input <?php if($feedback->questions_comments == 'Neutral') echo 'checked="checked"'; ?> type="radio" name="questions_comments" disabled='disabled'>Neutral</label> <label class="radio-inline"><input <?php if($feedback->questions_comments == 'Agree') echo 'checked="checked"'; ?> type="radio" name="questions_comments" disabled='disabled'>Agree</label> <label class="radio-inline"><input <?php if($feedback->questions_comments == 'Strongly Agree') echo 'checked="checked"'; ?> type="radio" name="questions_comments" disabled='disabled'>Strongly Agree</label> </div> <div class="form-group feedback_radio"> <p>The instructor was able to present and explain concepts and ideas clearly</p> <label class="radio-inline"><input <?php if($feedback->concept_ideas == 'Strongly Disagree') echo 'checked="checked"'; ?> type="radio" name="concept_ideas" disabled='disabled'>Strongly Disagree</label> <label class="radio-inline"><input <?php if($feedback->concept_ideas == 'Disagree') echo 'checked="checked"'; ?> type="radio" name="concept_ideas" disabled='disabled'>Disagree</label> <label class="radio-inline"><input <?php if($feedback->concept_ideas == 'Neutral') echo 'checked="checked"'; ?> type="radio" name="concept_ideas" disabled='disabled'>Neutral</label> <label class="radio-inline"><input <?php if($feedback->concept_ideas == 'Agree') echo 'checked="checked"'; ?> type="radio" name="concept_ideas" disabled='disabled'>Agree</label> <label class="radio-inline"><input <?php if($feedback->concept_ideas == 'Strongly Agree') echo 'checked="checked"'; ?> type="radio" name="concept_ideas" disabled='disabled'>Strongly Agree</label> </div> <div class="form-group"> <p>What 2-3 things you have learned from this program that will help you in your daily work?</p> <p class="textarea_class"><?php echo $feedback->learnt_things; ?></p> </div> <div class="form-group"> <p>Any other comments/suggestions about the program</p> <p class="textarea_class"><?php echo $feedback->feedback; ?></p> </div> </div> <hr> <?php } else { ?> <div class="program_feedback"> <h4>Program Feedback</h4> <div class="form-group feedback_radio"> <p>The Program met its objectives</p> <label class="radio-inline"><input <?php if($feedback->objectives == 'Strongly Disagree') echo 'checked="checked"'; ?> type="radio" name="objectives" disabled='disabled'>Strongly Disagree</label> <label class="radio-inline"><input <?php if($feedback->objectives == 'Disagree') echo 'checked="checked"'; ?> type="radio" name="objectives" disabled='disabled'>Disagree</label> <label class="radio-inline"><input <?php if($feedback->objectives == 'Neutral') echo 'checked="checked"'; ?> type="radio" name="objectives" disabled='disabled'>Neutral</label> <label class="radio-inline"><input <?php if($feedback->objectives == 'Agree') echo 'checked="checked"'; ?> type="radio" name="objectives" disabled='disabled'>Agree</label> <label class="radio-inline"><input <?php if($feedback->objectives == 'Strongly Agree') echo 'checked="checked"'; ?> type="radio" name="objectives" disabled='disabled'>Strongly Agree</label> </div> <div class="form-group feedback_radio"> <p>A suitable combination of training approaches was used eg: presentations, discussions, etc</p> <label class="radio-inline"><input <?php if($feedback->combination_of_training == 'Strongly Disagree') echo 'checked="checked"'; ?> type="radio" name="combination_of_training" disabled='disabled'>Strongly Disagree</label> <label class="radio-inline"><input <?php if($feedback->combination_of_training == 'Disagree') echo 'checked="checked"'; ?> type="radio" name="combination_of_training" disabled='disabled'>Disagree</label> <label class="radio-inline"><input <?php if($feedback->combination_of_training == 'Neutral') echo 'checked="checked"'; ?> type="radio" name="combination_of_training" disabled='disabled'>Neutral</label> <label class="radio-inline"><input <?php if($feedback->combination_of_training == 'Agree') echo 'checked="checked"'; ?> type="radio" name="combination_of_training" disabled='disabled'>Agree</label> <label class="radio-inline"><input <?php if($feedback->combination_of_training == 'Strongly Agree') echo 'checked="checked"'; ?> type="radio" name="combination_of_training" disabled='disabled'>Strongly Agree</label> </div> <div class="form-group feedback_radio"> <p>The duration of the program was ideal for the concepts covered</p> <label class="radio-inline"><input <?php if($feedback->program_duration == 'Strongly Disagree') echo 'checked="checked"'; ?> type="radio" name="program_duration" disabled='disabled'>Strongly Disagree</label> <label class="radio-inline"><input <?php if($feedback->program_duration == 'Disagree') echo 'checked="checked"'; ?> type="radio" name="program_duration" disabled='disabled'>Disagree</label> <label class="radio-inline"><input <?php if($feedback->program_duration == 'Neutral') echo 'checked="checked"'; ?> type="radio" name="program_duration" disabled='disabled'>Neutral</label> <label class="radio-inline"><input <?php if($feedback->program_duration == 'Agree') echo 'checked="checked"'; ?> type="radio" name="program_duration" disabled='disabled'>Agree</label> <label class="radio-inline"><input <?php if($feedback->program_duration == 'Strongly Agree') echo 'checked="checked"'; ?> type="radio" name="program_duration" disabled='disabled'>Strongly Agree</label> </div> </div> <hr> <div class="program_materials"> <h4>Program Materials</h4> <div class="form-group feedback_radio"> <p>The materials were useful, well-structured and relevant to the training</p> <label class="radio-inline"><input <?php if($feedback->material_use == 'Strongly Disagree') echo 'checked="checked"'; ?> type="radio" name="material_use" disabled='disabled' >Strongly Disagree</label> <label class="radio-inline"><input <?php if($feedback->material_use == 'Disagree') echo 'checked="checked"'; ?> type="radio" name="material_use" disabled='disabled'>Disagree</label> <label class="radio-inline"><input <?php if($feedback->material_use == 'Neutral') echo 'checked="checked"'; ?> type="radio" name="material_use" disabled='disabled'>Neutral</label> <label class="radio-inline"><input <?php if($feedback->material_use == 'Agree') echo 'checked="checked"'; ?> type="radio" name="material_use" disabled='disabled'>Agree</label> <label class="radio-inline"><input <?php if($feedback->material_use == 'Strongly Agree') echo 'checked="checked"'; ?> type="radio" name="material_use" disabled='disabled'>Strongly Agree</label> </div> <div class="form-group"> <p>What 2-3 things you have learned from this program that will help you in your daily work?</p> <p class="textarea_class"><?php echo $feedback->learnt_things; ?></p> </div> <div class="form-group"> <p>Any other comments/suggestions about the program</p> <p class="textarea_class"><?php echo $feedback->feedback; ?></p> </div> </div> <?php } ?> </form> </div> </div> </section> </div> <!--- col-sm-8 --> <script type="text/javascript"> $(document).ready(function(){ }); </script> <?php echo view('includes/admin_footer')?> <style> .view_faculty { padding-top: 0.5%; } .form-group{ border-radius: 10px; } .textarea_class{ border-radius: 10px; } .view_faculty_time { padding-top: 3%; } @media only screen and (min-width:320px) and (max-width:640px) { .space2 { padding-left: 0px !important; } .view_faculty_time { padding-top: 1%; } } @media only screen and (min-width:641px) and (max-width:991px) { .view_faculty { padding-top: 2%; } .view_faculty_time { padding-top: 0%; } } @media only screen and (min-width:992px) and (max-width:1258px) { .view_faculty { padding-top: 1%; } .view_faculty_time { padding-top: 5%; } } .feedback h3{ text-align:center; text-transform:uppercase; font-weight: 600; } .feedback h4 { font-weight:600; color: #333; text-align:center; } .feedback h5 { font-weight:600; } .feedback p { font-weight:600; color: #333; } .feedback_div { padding-top: 2%; padding-bottom: 2%; margin-left: 15%; } .feedback_radio { background-color: white; padding: 10px 20px; } .feedback_name { padding-top: 1%; } hr { border-top: 1px solid #5555557a; } .textarea_class{ background-color: white; padding: 10px 10px; } </style>