From 06cd1295fd4035fc01dde2212fe403de7545857b Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Tue, 1 Nov 2016 15:59:50 +0800 Subject: webui: Add the index and configs templates --- fg21sim/webui/templates/configs.html | 451 +++++++++++++++++++++++++++++++++++ fg21sim/webui/templates/index.html | 38 +++ 2 files changed, 489 insertions(+) create mode 100644 fg21sim/webui/templates/configs.html create mode 100644 fg21sim/webui/templates/index.html (limited to 'fg21sim/webui/templates') diff --git a/fg21sim/webui/templates/configs.html b/fg21sim/webui/templates/configs.html new file mode 100644 index 0000000..2c6aaf6 --- /dev/null +++ b/fg21sim/webui/templates/configs.html @@ -0,0 +1,451 @@ +{# + # Copyright (c) 2016 Weitian LI + # MIT license + # + # Configuration part + #} +
+

Configurations

+
+ + +
+ +
+
+
+ + +
+
+ + +
+
+
+ + + + +
+
+ + +
+

Common

+
+
+
+ + +
+
+ + +
+
+ + +
+
+
+
+ + +
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
+ + +
+

Frequency

+
+
+
+ + +
+
+
+
+ + +
+ + +
+
+ + +
+
+
+
+
+ + +
+
+
+
+ + +
+ + +
+
+ + +
+
+ + +
+
+
+
+ + +
+

Output

+
+
+
+ + +
+
+
+
+ + +
+ + +
+
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+ + +
+

Cosmology

+
+
+
+ + +
+
+ + +
+
+
+ + +
+

Logging

+
+
+
+ + +
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+
+ + +
+
+ + +
+
+
+
+ + +
+

Galactic Components

+
+ + +
+
Synchrotron Emission
+
+
+ + +
+
+ + +
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+ + +
+
Free-free Emission
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+ + +
+
Supernova Remnants Emission
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+

Extragalactic Components

+
+ + +
+
Clusters of Galaxies Emission
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+
+
diff --git a/fg21sim/webui/templates/index.html b/fg21sim/webui/templates/index.html new file mode 100644 index 0000000..2d5091e --- /dev/null +++ b/fg21sim/webui/templates/index.html @@ -0,0 +1,38 @@ +{# + # Copyright (c) 2016 Weitian LI + # MIT license + # + # Index page for the Web UI of "fg21sim" + #} + +{% extends "base.html" %} + +{% block title %}fg21sim Web UI{% end %} + +{% block extra_head %} + + + +{% end %} + +{% block header %} + {% include "header.html" %} +{% end %} + +{% block main %} + {% include "configs.html" %} + +
+

Results

+

Simulation results go here :)

+
+ +
+

Logs

+

Logging messages should go here :)

+
+{% end %} + +{% block footer %} + {% include "footer.html" %} +{% end %} -- cgit v1.2.2