You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
853 B
30 lines
853 B
{% extends 'base.html' %} |
|
{% block body_content %} |
|
<div class="row"> |
|
<div class="col-md-12"> |
|
<div class="pricing-header px-3 py-3 pt-md-5 pb-md-4 mx-auto text-center"> |
|
<h1 class="h2 text-center">{{ title }}</h1> |
|
<p class="lead"></p> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="table-wrapper-scroll-y my-custom-scrollbar"> |
|
<table class="table table-hover table-bordered"> |
|
<thead> |
|
<tr> |
|
<th scope="col">User</th> |
|
<th scope="col">Last Message</th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
{% for message in jobmessage %} |
|
<tr onclick="window.location.href = '{{ message.sender_id }}';"> |
|
<td>{{ message.sender }}</td> |
|
<td>{{ message.text|truncatechars:40 }}</td> |
|
</tr> |
|
{% endfor %} |
|
</tbody> |
|
</table> |
|
</div> |
|
|
|
{% endblock %}
|
|
|