26a196291c707e3785c6d283027ee7d77a59f676
[osm/LW-UI.git] / projecthandler / template / project / project_descriptors.html
1 {% extends "base.html" %}
2
3 {% load staticfiles %}
4
5 {% block head_block %}
6 {{ block.super }}
7 <link rel="stylesheet" href="/static/node_modules/datatables.net-bs/css/dataTables.bootstrap.min.css">
8 {% endblock %}
9 {% block title_header_big %}
10
11 {% endblock %}
12
13 {% block left_sidebar %}
14
15 {% endblock %}
16
17 {% block breadcrumb_body %}
18 {{ block.super }}
19 {% if user.is_admin %}
20 <li><a href="{% url 'projects:projects_list' %}">Projects</a></li>
21 {% else%}
22 <li><a href="#">Projects</a></li>
23 {% endif %}
24
25
26
27 {% endblock %}
28
29 {% block content_body %}
30 {{ block.super }}
31 {% if alert_message %}
32 {% if alert_message.success == True %}
33 <div class="alert alert-success alert-dismissible fade in">
34 <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
35 <h4><i class="icon fa fa-check"></i> Success</h4>
36 {{alert_message.message}}
37 </div>
38 {% endif %}
39 {% if alert_message.success == False %}
40 <div class="alert alert-danger alert-dismissible fade in">
41 <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
42 <h4><i class="icon fa fa-ban"></i> Alert!</h4>
43 {{alert_message.message}}
44 </div>
45 {% endif %}
46 {% endif %}
47
48 {% endblock %}
49
50
51
52
53 {% block resource_block %}
54 {{ block.super }}
55
56 <script src="/static/node_modules/datatables.net/js/jquery.dataTables.min.js"></script>
57 <script src="/static/node_modules/datatables.net-bs/js/dataTables.bootstrap.min.js"></script>
58
59 {% endblock %}
60