Skip to content
Snippets Groups Projects
Commit 864580cb authored by Julien  FUMEY's avatar Julien FUMEY
Browse files

add template for simulation results

parent 164c985c
No related branches found
No related tags found
1 merge request!7Simulator
Pipeline #155022 passed
{% extends "base.html" %}
{% load crispy_forms_tags %}
{% load sstatic %}
{% load i18n %}
{% block extra_js %}
{{block.super}}
{% if extra_js_file %}
<script src="{% sstatic extra_js_file %}"></script>
{% endif%}
{% for extra_js_file in extra_js_files %}
<script src="{% sstatic extra_js_file %}"></script>
{% endfor%}
{% endblock %}
{% block extra_css %}
{{block.super}}
{% if extra_css_file %}
<link rel="stylesheet" href="{% sstatic extra_css_file %}"/>
{% endif%}
{% for extra_css_file in extra_css_files %}
<link rel="stylesheet" href="{% sstatic extra_css_file %}"/>
{% endfor%}
{% endblock %}
{% block container_class %}{{block.super}} {{ custom_container_class }}{% endblock %}
{% block title %}Results{% endblock %}
{% block page_title %}Results{% endblock %}
{% block content %}
<div class="formset-container col-12 col-xs-12 {%if custom_css_width %}{{custom_css_width}}{%else%}{%if not medium_width%}col-sm-10 col-sm-offset-1 offset-sm-1 col-md-8 col-md-offset-2 offset-md-2 col-lg-6 col-lg-offset-3 offset-lg-3 col-xl-4 col-xl-offset-4 offset-xl-4 col-xxl-2 col-xxl-offset-5{%endif%}{%if medium_width%}col-md-10 col-md-offset-1 offset-md-1 col-lg-8 col-lg-offset-2 offset-lg-2 col-xl-6 col-xl-offset-3 offset-xl-3 col-xxl-4 col-xxl-offset-4 col-xxxl-2 col-xxxl-offset-5{%endif%}{%endif%}">
{{ simulation.uuid }}
</div>
{% endblock content %}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment