| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- {% comment %}
- Licensed to Cloudera, Inc. under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. Cloudera, Inc. licenses this file
- to you 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.
- {% endcomment %}
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <title>Error</title>
- <link rel="stylesheet" href="/static/ext/css/bootstrap.min.css" type="text/css" media="screen" title="no title" charset="utf-8" />
- <link rel="stylesheet" href="/static/css/jhue.css" type="text/css" media="screen" title="no title" charset="utf-8" />
-
- <style type="text/css">
- body {
- padding-top: 60px;
- }
- </style>
- <script src="/static/ext/js/jquery/jquery-1.7.min.js" type="text/javascript" charset="utf-8"></script>
-
- <script type="text/javascript" charset="utf-8">
- $(document).ready(function(){
- });
- </script>
-
- </head>
- <body>
- <div class="topbar">
- <div class="topbar-inner">
- <div class="container-fluid">
- <a class="brand" href="#">jHue</a>
- <ul class="nav">
- <li><a href="/beeswax">Beeswax</a></li>
- <li><a href="/filebrowser/">File Browser</a></li>
- <li><a href="/jobsub/">Job Designer</a></li>
- <li><a href="/jobbrowser/jobs/">Job Browser</a></li>
- <li><a href="/useradmin/">User Admin</a></li>
- <li><a href="/shell/">Shell</a></li>
- <li><a href="/help/">Help</a></li>
- <li><a href="/about/">About</a></li>
- </ul>
- </div>
- </div>
- </div>
-
- <div class="container-fluid">
- <h1>Error!</h1>
- <pre>{{ error }}</pre>
-
- <textarea style="width: 100%;" rows=80 readonly="readonly">
- {{ traceback }}
- </textarea>
-
-
- </div>
- </body>
- </html>
|