summaryrefslogtreecommitdiffstats
path: root/printing_templates/custom.html
diff options
context:
space:
mode:
authorGravatar Gehad elrobey <gehadelrobey@gmail.com>2015-07-28 09:24:24 +0200
committerGravatar Lubomir I. Ivanov <neolit123@gmail.com>2015-07-28 11:39:44 +0300
commitccddcc3952fec5195690c154f736690093e544d2 (patch)
tree0255e6d2a65dd9563b4c998f5a8f553edaa08a56 /printing_templates/custom.html
parent39ec9f8a52766f6ed2fb8395dc511bcfd7bf1539 (diff)
downloadsubsurface-ccddcc3952fec5195690c154f736690093e544d2.tar.gz
Printing: rename templates to have spaces and capitalization
This is easier to have user friendly names for the bundled templates. Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com> Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Diffstat (limited to 'printing_templates/custom.html')
-rw-r--r--printing_templates/custom.html50
1 files changed, 0 insertions, 50 deletions
diff --git a/printing_templates/custom.html b/printing_templates/custom.html
deleted file mode 100644
index 52fdb4b49..000000000
--- a/printing_templates/custom.html
+++ /dev/null
@@ -1,50 +0,0 @@
-<html>
-<head>
- <style>
- body {
- background-color: white;
- padding: 0;
- margin: 0;
- font-size: {{ template_options.font_size }}vw;
- line-height: {{ template_options.line_spacing }};
- font-family: {{ template_options.font }};
- }
-
- h1 {
- float: left;
- font-size: {{ template_options.font_size }}vw;
- }
-
- .mainContainer {
- width: 96%;
- height: 100%;
- margin-left: 2%;
- margin-right: 2%;
- margin-top: 0%;
- margin-bottom: 0%;
- overflow: hidden;
- border-width: 0;
- page-break-inside: avoid;
- }
-
- .innerContainer {
- width: 98%;
- height: 98%;
- padding: 1%;
- overflow: hidden;
- }
- </style>
-</head>
-<body data-numberofdives = 1>
-{% block main_rows %}
- {% for dive in dives %}
- <div class="mainContainer">
- <div class="innerContainer">
- <h1>This template is empty</h1>
- <!-- Template must be filled -->
- </div>
- </div>
- {% endfor %}
-{% endblock %}
-</body>
-</html>