-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmother_station.html
54 lines (46 loc) · 1.4 KB
/
mother_station.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{% extends 'layouts/base.html' %}
{% load static %}
{% block title %} UI Tables {% endblock %}
<!-- Specific Page CSS goes HERE -->
{% block stylesheets %}{% endblock stylesheets %}
{% block content %}
<div class="row">
<div class="col-md-12">
<div class="card" align="right" dir="rtl">
<div class="card-header">
<h4 class="card-title"> ایستگاه های مادر </h4>
</div>
<div class="card-body">
<div class="table-responsive">
<table class="table tablesorter " id="">
<thead class=" text-primary">
<tr>
<th>
نام
</th>
<th>
توضیحات
</th>
<th>
مسئول
</th>
</tr>
</thead>
<tbody>
{% for Mother_Station in mother_station %}
<tr>
<td><a href="{{ Mother_Station.get_absolute_url }}"> {{ Mother_Station.name }} </a></td>
<td> {{ Mother_Station.description|slice:":70" }}... </td>
<td> {{ Mother_Station.manager }} </td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
{% endblock content %}
<!-- Specific Page JS goes HERE -->
{% block javascripts %}{% endblock javascripts %}