aboutsummaryrefslogtreecommitdiffstats
path: root/src/templates/dashboard/pdf.yaml
diff options
context:
space:
mode:
authorParker Berberian <pberberian@iol.unh.edu>2020-01-30 13:33:35 -0500
committerParker Berberian <pberberian@iol.unh.edu>2020-01-30 16:12:18 -0500
commit078273eb7db5a481a4131d44a943f3c9e34b6b88 (patch)
tree9e6e569e18712d77b8a65c6ebf4dda50ade1b55a /src/templates/dashboard/pdf.yaml
parent899e1a4baa95d0bc6f0eef34de66f0e257174878 (diff)
Adds Template Overrides
Changes the structure of the template directories to allow a new project to define their own set of override templates that inherit from a common base. I have slightly modified landing.html here as an example. In comming changes we will try to move all the "laas" specific content into the laas directory Change-Id: I46151be182de901f870debb247b305ea34ae77ba Signed-off-by: Parker Berberian <pberberian@iol.unh.edu>
Diffstat (limited to 'src/templates/dashboard/pdf.yaml')
-rw-r--r--src/templates/dashboard/pdf.yaml92
1 files changed, 0 insertions, 92 deletions
diff --git a/src/templates/dashboard/pdf.yaml b/src/templates/dashboard/pdf.yaml
deleted file mode 100644
index c893919..0000000
--- a/src/templates/dashboard/pdf.yaml
+++ /dev/null
@@ -1,92 +0,0 @@
----
-version: {{version|default:"1.0"}}
-details:
- contact: {{details.contact}}
- lab: {{details.lab}}
- link: {{details.link}}
- location: {{details.location}}
- pod_owner: {{details.owner}}
- type: {{details.type}}
-jumphost:
- disks:
- {% for disk in jumphost.disks %}
- - disk_capacity: {{disk.capacity}}
- disk_interface: {{disk.interface}}
- disk_rotation: {{disk.rotation}}
- disk_type: {{disk.type}}
- name: {{disk.name}}
- {% endfor %}
- interfaces:
- {% for interface in jumphost.interfaces %}
- - features: {{interface.features}}
- mac_address: {{interface.mac_address}}
- name: {{interface.name}}
- speed: {{interface.speed}}
- {% endfor %}
- name: {{jumphost.name}}
- node:
- arch: {{jumphost.node.arch}}
- cores: {{jumphost.node.cores}}
- cpu_cflags: {{jumphost.node.cpu_cflags}}
- cpus: {{jumphost.node.cpus}}
- memory: {{jumphost.node.memory}}
- model: {{jumphost.node.model}}
- type: {{jumphost.node.type}}
- vendor: {{jumphost.node.vendor}}
- os: {{jumphost.os}}
- remote_management:
- address: {{jumphost.remote.address}}
- mac_address: {{jumphost.remote.mac_address}}
- pass: {{jumphost.remote.pass}}
- type: {{jumphost.remote.type}}
- user: {{jumphost.remote.user}}
- versions:
- {% for version in jumphost.remote.versions %}
- - {{version}}
- {% endfor %}
- remote_params:
- pass: {{jumphost.remote.pass}}
- type: {{jumphost.remote.type}}
- user: {{jumphost.remote.user}}
- versions:
- {% for version in jumphost.remote.versions %}
- - {{version}}
- {% endfor %}
-nodes:
-{% for node in nodes %}
-- disks:
- {% for disk in node.disks %}
- - disk_capacity: {{disk.capacity}}
- disk_interface: {{disk.interface}}
- disk_rotation: {{disk.rotation}}
- disk_type: {{disk.type}}
- name: {{disk.name}}
- {% endfor %}
- interfaces:
- {% for interface in node.interfaces %}
- - features: {{interface.features}}
- mac_address: {{interface.mac_address}}
- name: {{interface.name}}
- speed: {{interface.speed}}
- {% endfor %}
- name: {{node.name}}
- node:
- arch: {{node.node.arch}}
- cores: {{node.node.cores}}
- cpu_cflags: {{node.node.cpu_cflags}}
- cpus: {{node.node.cpus}}
- memory: {{node.node.memory}}
- model: {{node.node.model}}
- type: {{node.node.type}}
- vendor: {{node.node.vendor}}
- remote_management:
- address: {{node.remote.address}}
- mac_address: {{node.remote.mac_address}}
- pass: {{node.remote.pass}}
- type: {{node.remote.type}}
- user: {{node.remote.user}}
- versions:
- {% for version in node.remote.versions %}
- - {{version}}
- {% endfor %}
-{% endfor %}