{% extends "base.html" %} {% load static %} {% comment %} # # Copyright (c) 2016 NIBIO . # # This file is part of VIPSWeb. # VIPSWeb is free software: you can redistribute it and/or modify # it under the terms of the NIBIO Open Source License as published by # NIBIO, either version 1 of the License, or (at your option) any # later version. # # VIPSWeb is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # NIBIO Open Source License for more details. # # You should have received a copy of the NIBIO Open Source License # along with VIPSWeb. If not, see . # {% endcomment %} {% load i18n %} {% block title%}{% trans "Forecasts" %}{%endblock%} {% block content %}

{% trans "Forecasts" %}

{% trans "Crop" %} {% trans "Pest" %} {% trans "Model name" %} {% trans "Weather station" %} {% trans "Location" %} {% trans "Date start" %} {% trans "Date end" %}
{% if private_forecast_configurations != None %}

{% trans "Private forecasts" %}

{% for forecast_configuration in private_forecast_configurations %} {% endfor %}
{% trans "Crop" %} {% trans "Pest" %} {% trans "Model name" %} {% trans "Weather station" %} {% trans "Location" %} {% trans "Date start" %} {% trans "Date end" %}
{{ forecast_configuration.crop_organism.local_name }} {{ forecast_configuration.pest_organism.local_name }} {{ forecast_configuration.model_local_name }} {{ forecast_configuration.weather_station_point_of_interest.name }} {{ forecast_configuration.location_point_of_interest.name }} {{ forecast_configuration.date_start }} {{ forecast_configuration.date_end }} {% trans "Results" %}
{% endif %} {% endblock %} {% block customJS %} {% endblock %}