{% extends 'Admin/Sidebar2.html' %} {% block content %} {% load widget_tweaks %} {%load static%} <head> <!-- Font special for pages--> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i" rel="stylesheet"> <!-- Main CSS--> <link href="{% static "css/main.css" %}"rel="stylesheet" media="all"> </head> <div class=" > <div class="wrapper wrapper 0"> <div style="margin-left: 0px;" class="card card-5"> {% if messages %} <ul class="messages"> {% for message in messages %} <li {% if message.tags %} class=" {{ message.tags }} " {% endif %}> {{ message }} </li> {% endfor %} </ul> {% endif %} <div class="card-heading"> <h2 class="title"> EMPLOYEE DATA </h2> </div> <div id="myDiv"> <div id="div_print"> <div class="card card-body printableArea"> <div class="container" style="overflow-x:auto;"> EMPLOYEE DATA LIST <table class="table table-striped"> <thead> <tr> <th> StaffID </th> <th> EmployeeName </th> <th> Work Done </th> <th> Work Rate </th> <th> Taken Time </th> </tr> </thead> <tbody> {% if d %} {% for i in d %} <tr> <td>{{i.StaffID}}</td> <td>{{i.EmployeeName}}</td> <td>{{i.JobDone}}</td> <td>{{i.WorkQuality}} / 5 </td> <td>{{i.TakenTime}} Minutes</td> </tr> {% endfor %} {% endif %} </tbody> </table> </div> </div> </div></div> <script language="javascript"> function printdiv(printpage) { var headstr = "<html><head><title></title></head><body>"; var footstr = "</body>"; var newstr = document.all.item(printpage).innerHTML; var oldstr = document.body.innerHTML; document.body.innerHTML = headstr + newstr + footstr; window.print(); document.body.innerHTML = oldstr; location.reload(); return false; } </script> <div class="card-body"> <input name="b_print" type="button" class="btn btn-primary btn-print" onClick="printdiv('div_print');" value=" Print "> </div> <div class="alert alert-primary fixed-bottom mb-0 text-center" style="background: #747578; border: none; color: white;" role="alert" > © SERVPORT 2022 </div> </div> </div> </div> </div> {% endblock content %}