-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnotices.html
31 lines (23 loc) · 941 Bytes
/
notices.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
{% extends 'layouts/base.html' %}
{% block title %} ticket {% endblock %}
<!-- Specific Page CSS goes HERE -->
{% block stylesheets %}{% endblock stylesheets %}
{% block content %}
{% load bootstrap %}
<br> <h2 align="center" dir="rtl"> اعلانات </h2> <hr><br>
{% for Notice in notices %}
<div class="row">
<div class="col-md-12">
<div class="card card-profile">
<div class="card-body">
<h6 class="card-category text-gray">{{ Notice.j_created_on }}</h6>
<h3 style="color:#2891f7e3;" class="card-title" align="right" dir="rtl" > {{ Notice.title }} </h3> <br>
<h6 align="right" dir="rtl" > {{ Notice.content|linebreaks }} </h6>
</div>
</div>
</div>
</div>
{% endfor %}
{% endblock content %}
<!-- Specific Page JS goes HERE -->
{% block javascripts %}{% endblock javascripts %}