FIX: Correct static use in templates

This commit is contained in:
2020-02-19 14:31:42 +00:00
parent 8c981cc366
commit 1dacbc1444
5 changed files with 8 additions and 23 deletions

View File

@@ -1,12 +1,11 @@
{% extends 'base_embed.html' %} {% extends 'base_embed.html' %}
{% load static from staticfiles %} {% load static %}
{% block content %} {% block content %}
<div class="row"> <div class="row">
<div class="col-sm-12"> <div class="col-sm-12">
<a href="/"> <a href="/">
<span class="source"> R<small>ig</small> I<small>nformation</small> G<small>athering</small> S<small>ystem</small></span> <span class="source"> R<small>ig</small> I<small>nformation</small> G<small>athering</small> S<small>ystem</small></span>
</a> </a>
</div> </div>
@@ -20,7 +19,7 @@
<span class="glyphicon glyphicon-exclamation-sign"></span> <span class="glyphicon glyphicon-exclamation-sign"></span>
{% endif %} {% endif %}
</span> </span>
<h3> <h3>
<a {% if perms.RIGS.view_event %}href="{% url 'event_detail' object.pk %}"{% endif %}> <a {% if perms.RIGS.view_event %}href="{% url 'event_detail' object.pk %}"{% endif %}>
{% if object.is_rig %}N{{ object.pk|stringformat:"05d" }}{% else %}{{ object.pk }}{% endif %} {% if object.is_rig %}N{{ object.pk|stringformat:"05d" }}{% else %}{{ object.pk }}{% endif %}
@@ -72,7 +71,6 @@
</p> </p>
</div> </div>
<div class="col-xs-6"> <div class="col-xs-6">
{% if object.meet_at %} {% if object.meet_at %}
<p> <p>
<strong>Crew meet:</strong> <strong>Crew meet:</strong>
@@ -97,10 +95,7 @@
{{ object.description|linebreaksbr }} {{ object.description|linebreaksbr }}
</p> </p>
{% endif %} {% endif %}
</table> </table>
</div> </div>
</div> </div>
{% endblock %} {% endblock %}

View File

@@ -1,8 +1,7 @@
{% extends 'base_embed.html' %} {% extends 'base_embed.html' %}
{% load static from staticfiles %} {% load static %}
{% block content %} {% block content %}
<div class="row"> <div class="row">
<div class="col-sm-12"> <div class="col-sm-12">
<a href="/assets"> <a href="/assets">
@@ -35,6 +34,4 @@
</table> </table>
</div> </div>
</div> </div>
{% endblock %} {% endblock %}

View File

@@ -1,7 +1,6 @@
{% load static %} {% load static %}
{% load raven %} {% load raven %}
<!DOCTYPE html> <!DOCTYPE html>
<html <html
dir="{% if LANGUAGE_BIDI %}rtl{% else %}ltr{% endif %}" dir="{% if LANGUAGE_BIDI %}rtl{% else %}ltr{% endif %}"

View File

@@ -1,4 +1,4 @@
{% load static from staticfiles %} {% load static %}
{% load raven %} {% load raven %}

View File

@@ -1,17 +1,14 @@
{% load static from staticfiles %} {% load static %}
{% load raven %} {% load raven %}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width"> <meta name="viewport" content="width=device-width">
</head> </head>
<body> <body>
<table class="main-table"> <table class="main-table">
<tr class="client-header"> <tr class="client-header">
<td align="center"> <td align="center">
@@ -32,7 +29,7 @@
<!--[if mso]> <!--[if mso]>
</td></tr></table> </td></tr></table>
</center> </center>
<![endif]--> <![endif]-->
</td> </td>
</tr> </tr>
<tr> <tr>
@@ -47,12 +44,9 @@
<!--[if mso]> <!--[if mso]>
</td></tr></table> </td></tr></table>
</center> </center>
<![endif]--> <![endif]-->
</td> </td>
</tr> </tr>
</table> </table>
</body> </body>
</html> </html>