Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rose bush now auto refreshes some pages #2151

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ below:
* Stuart Whitehouse (Met Office, UK)
* Steve Wardle (Met Office, UK)
* Scott Wales (ARC Centre of Excellence for Climate Systems Science, Australia)
* Thomas Coleman (Bureau of Meteorology, Australia)

(All contributors are identifiable with email addresses in the version control
logs or otherwise.)
Expand Down
2 changes: 1 addition & 1 deletion lib/html/template/rose-bush/broadcast-events.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% extends "suite-base.html" %}
{% block title_name %}broadcasts list{% endblock %}

{% block auto_refresh %}<meta http-equiv="refresh" content="120">{% endblock %}
{% block content %}
<div class="container-fluid">

Expand Down
2 changes: 1 addition & 1 deletion lib/html/template/rose-bush/broadcast-states.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% extends "suite-base.html" %}
{% block title_name %}broadcasts list{% endblock %}

{% block auto_refresh %}<meta http-equiv="refresh" content="120">{% endblock %}
{% block content %}
<div class="container-fluid">

Expand Down
2 changes: 1 addition & 1 deletion lib/html/template/rose-bush/cycles.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% extends "suite-base.html" %}
{% block title_name %}cycles list{% endblock %}

{% block auto_refresh %}<meta http-equiv="refresh" content="120">{% endblock %}
{% block content %}
<div class="page-header">
<div class="panel-group" id="accordion-0">
Expand Down
1 change: 1 addition & 0 deletions lib/html/template/rose-bush/suite-base.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<title>{% if path is defined %}{{path}} {% endif %}{{suite}}~{{user}}:
{{title}} @ {{host}} - {% block title_name %}{% endblock %}</title>
{% block auto_refresh %}{% endblock %}
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="{{script}}/favicon.ico" />
<link rel="shortcut icon" href="{{script}}/favicon.ico" />
Expand Down
1 change: 1 addition & 0 deletions lib/html/template/rose-bush/suites.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<title>{{user}}: {{title}}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="refresh" content="120">
<link rel="icon" href="{{script}}/favicon.ico" />
<link rel="shortcut icon" href="{{script}}/favicon.ico" />
<link type="text/css" href="{{script}}/css/bootstrap.min.css"
Expand Down
1 change: 1 addition & 0 deletions lib/html/template/rose-bush/taskjobs.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{% extends "suite-base.html" %}
{% block title_name %}task jobs list{% endblock %}
{% block auto_refresh %}<meta http-equiv="refresh" content="120">{% endblock %}
{% block content %}
<div class="page-header">

Expand Down