Untitled
unknown
plain_text
2 years ago
1.5 kB
2
Indexable
Never
<h3>Id</h3> <p>{{employee.employee_id}}</p><hr> <h3>Name</h3> <p>{{employee.name}}</p><hr> <h3>Age</h3> <p>{{employee.age}}</p><hr> <h3>Position</h3> <p>{{employee.position}}</p><hr> {% extends 'base.html' %} {% include 'header.html' %} {% block title %} Home {% endblock %} {% block body %} <div class="container"> <table class="table"> <thead style="background-color: brown;color: aliceblue;"> <th>ID</th> <th>First Name</th> <th>Last Name</th> <th>Email</th> <th>Gender</th> <th>Hobbies</th> <th>Country</th> <th>Actions</th> </thead> <tbody> {% for student in students %} <tr {% if loop.index %2==0 %} style="background-color: rgb(255, 217, 247);" {% else %} style="background-color: rgb(248, 169, 231);" {% endif %} ><td>{{ loop.index }}</td> <td>{{student.first_name}}</td> <td>{{student.last_name}}</td> <td>{{student.email}}</td> <td>{{student.gender}}</td> <td>{{student.hobbies}}</td> <td>{{student.country}}</td> <td> <span style="font-size: 24px;color:green;"> <a href="/{{student.id}}/edit"> <i class="fas fa-edit"></i></a> </span> | <span style="font-size: 24px;color:red;"> <a href="/{{student.id}}/delete"> <i class="fas fa-trash-alt"></i></a></span></td> {% endfor %} </tbody> </table> </div> {% endblock %}