mirror of
https://github.com/Novartis/cellxgene-gateway.git
synced 2026-09-18 18:18:33 +08:00
52 lines
2.1 KiB
HTML
52 lines
2.1 KiB
HTML
<!--
|
|
Copyright 2019 Novartis Institutes for BioMedical Research Inc. Licensed
|
|
under the Apache License, Version 2.0 (the "License"); you may not use
|
|
this file except in compliance with the License. You may obtain a copy
|
|
of the License at http://www.apache.org/licenses/LICENSE-2.0. Unless
|
|
required by applicable law or agreed to in writing, software distributed
|
|
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
|
|
OR CONDITIONS OF ANY KIND, either express or implied. See the License for
|
|
the specific language governing permissions and limitations under the License.
|
|
-->
|
|
|
|
<html>
|
|
<head>
|
|
<title>Cellxgene Gateway - Process Error</title>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
|
|
<link rel="icon" type="image/png" href="nibr.png">
|
|
{% for script in extra_scripts %}
|
|
<script src="{{ script }}"></script>
|
|
{% endfor %}
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
|
|
</head>
|
|
<body>
|
|
<header class="navbar navbar-expand navbar-dark flex-column flex-md-row bd-navbar">
|
|
<h3>Cellxgene Gateway - Process Error</h3>
|
|
</header>
|
|
<br>
|
|
<div style="margin-left:20px">
|
|
<h4>Error Details</h4>
|
|
<table>
|
|
<tr><th>Message</th><td>{{ message }}</td></tr>
|
|
<tr><th>Status</th><td>{{ http_status }}</td></tr>
|
|
<tr><th>Stdout</th><td>{{ stdout }}</td></tr>
|
|
<tr><th>Stderr</th><td>{{ stderr }}</td></tr>
|
|
</table>
|
|
<br>
|
|
<h4>Options</h4>
|
|
Please choose one of the following, or use the back button:
|
|
<ul>
|
|
<li><a href="{{ relaunch_url }}">
|
|
Attempt to relaunch the cellxgene server.
|
|
</a></li>
|
|
<li><a href="{{ url_for('filecrawl') }}">
|
|
Return to the file directory.
|
|
</a></li>
|
|
<li><a href="{{ url_for('index') }}">
|
|
Return to the homepage.
|
|
</a></li>
|
|
</ul>
|
|
|
|
</body>
|
|
</html>
|