Parcourir la source

Use extra_css block for hardware_provisioning CSS

Jocelyn Delande il y a 9 ans
Parent
commit
7ea1c03a14

+ 0 - 17
coin/static/css/local.css

@@ -195,23 +195,6 @@ table.no-background tr {
     margin-top: 3.9375rem;  /* h1 margin top + bottom + font-size * line-height =  0.2rem + 0.5rem + 2.3125rem * 1.4 */
 }
 
-
-table tr.placeholder td {
-	text-align: center;
-	font-style: italic;
-}
-
-table .actions {
-	text-align: center;
-}
-
-table .actions .button {
-	width: 100%;
-}
-
-.pre-table-action {
-	float: right;
-}
 /* Footer */
 
 #footer {

+ 24 - 0
hardware_provisioning/static/hardware_provisioning/css/local.css

@@ -0,0 +1,24 @@
+/* Listing table with action button */
+
+.pre-table-action {
+	float: right;
+}
+
+table tr.placeholder td {
+	text-align: center;
+	font-style: italic;
+}
+
+table .actions {
+	text-align: center;
+}
+
+table .actions .button {
+	width: 100%;
+}
+
+/* List filters links */
+
+.list-filter {
+	text-align: right;
+}

+ 5 - 0
hardware_provisioning/templates/hardware_provisioning/base.html

@@ -0,0 +1,5 @@
+{% extends "base.html" %}
+
+{% load static %}
+
+{% block extra_css %}<link rel="stylesheet" href="{% static "hardware_provisioning/css/local.css" %}">{% endblock %}

+ 1 - 1
hardware_provisioning/templates/hardware_provisioning/item_borrow.html

@@ -1,4 +1,4 @@
-{% extends 'base.html' %}
+{% extends 'hardware_provisioning/base.html' %}
 
 {% block content %}
 

+ 1 - 1
hardware_provisioning/templates/hardware_provisioning/item_list.html

@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "hardware_provisioning/base.html" %}
 
 {% block content %}
 <h2>J'emprunte à l'association…</h2>

+ 1 - 1
hardware_provisioning/templates/hardware_provisioning/list.html

@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "hardware_provisioning/base.html" %}
 
 {% block content %}
 {% if view  == 'old' %}

+ 1 - 1
hardware_provisioning/templates/hardware_provisioning/return.html

@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "hardware_provisioning/base.html" %}
 
 {% block content %}
 <h2>Retour de matériel</h2>

+ 1 - 1
hardware_provisioning/templates/hardware_provisioning/transfer.html

@@ -1,4 +1,4 @@
-{% extends "base.html" %}
+{% extends "hardware_provisioning/base.html" %}
 
 {% block content %}
 <h2>Transfert de matériel</h2>