commitall
This commit is contained in:
54
application/views/admin/notif-details.php
Normal file
54
application/views/admin/notif-details.php
Normal file
@@ -0,0 +1,54 @@
|
||||
|
||||
<main class="wraper responsive-width" id="main">
|
||||
<div class="from-group">
|
||||
<a href="<?php echo base_url() ?>Admin/notifications"><button type="button" class="btn btn-dark btn-sm">Back</button></a>
|
||||
</div>
|
||||
<!-- admin template section -->
|
||||
<div class="admin_tempblock">
|
||||
<div class="admin_tempsec">
|
||||
<div class="admin_sec">
|
||||
<form>
|
||||
<div class="subsec_sec">
|
||||
<div class="subject_l w-100 subject_l_notifn">
|
||||
<div class="subject_lsec">
|
||||
<div class="subject_lhead">Notification Details</div>
|
||||
<div class="notif_details">
|
||||
<ul>
|
||||
<li><label>To :</label> <?php echo ucfirst($result->notification_to) ?></li>
|
||||
<li><label>Date : </label> <?php echo $result->created_at ?></li>
|
||||
</ul>
|
||||
<h5 class="mt-3 mb-2"><?php echo $result->notification_title ?></h5>
|
||||
<p><?php echo $result->description ?></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- admin template section end -->
|
||||
</main>
|
||||
<!--End right-top side-->
|
||||
|
||||
<script>
|
||||
$(document).ready(function(){
|
||||
$('.user-drpdown').click(function(){
|
||||
$('.drpdown-items').toggle();
|
||||
});
|
||||
|
||||
|
||||
//table js
|
||||
$('#tbl').DataTable( {
|
||||
"lengthMenu": [[5,10, 25, 50, -1], [5,10, 25, 50, "All"]]
|
||||
} );
|
||||
//table js end
|
||||
//multiple select js start
|
||||
$('select').selectpicker();
|
||||
//multiple select js end
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user