diff --git a/app/main/templates/main/datatypes.html b/app/main/templates/main/datatypes.html new file mode 100644 index 0000000..84dd617 --- /dev/null +++ b/app/main/templates/main/datatypes.html @@ -0,0 +1,65 @@ +{% extends "main/base.html" %} +{% block content %} + +

Model Details

+
+
CCCMA CGCM 3.1
+
+ Canadian Centre for Climate Modeling and Analysis – General Circulation Model version 3.1 - t47 +
+
MPI ECHAM 5
+
+ Max Planck Institute for Meteorology – European Centre Hamburg Model 5 +
+
GFDL CM 2.1
+
+ Geophysical Fluid Dynamics Laboratory – Coupled Climate Model 2.1 +
+
UKMO HADCM 3.0
+
+ UK Met Office - Hadley Centre – Coupled Model 3.0 +
+
MIROC 3.2
+
+ Center for Climate System Research – Model for Interdisciplinary Research on Climate (medium resolution) +
+
5 Model Average
+
+ A composite of the five models listed above +
+
+ +

Emission Scenario Details (from SNAP)

+
+
Scenario A1B
+
+ +
+
Scenario B1
+
+ +
+
Scenario A2
+
+ +
+
+ +{% endblock %} diff --git a/app/main/views.py b/app/main/views.py index 59685de..f3d8276 100644 --- a/app/main/views.py +++ b/app/main/views.py @@ -56,7 +56,6 @@ def index_submit(): return render_template('main/index.html', form=form) -# TODO: reimport this template @main.route('/datatypes') def datatypes(): return render_template('main/datatypes.html')