| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- {% 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 %}
- {% load is_selected %}
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>Error</title>
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="description" content="">
- <meta name="author" content="">
- <link href="/static/ext/css/bootstrap.min.css" rel="stylesheet">
- <link href="/static/ext/css/bootstrap-responsive.min.css" rel="stylesheet">
- <link href="/static/css/jhue.css" rel="stylesheet">
- <link href="/static/ext/css/fileuploader.css" rel="stylesheet">
- <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
- <!--[if lt IE 9]>
- <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
- <![endif]-->
- <style type="text/css">
- body {
- padding-top: 60px;
- }
- </style>
- <script src="/static/ext/js/jquery/jquery-1.7.1.min.js"></script>
- <script src="/static/js/Source/jHue/jquery.showusername.js"></script>
- <script src="/static/js/Source/jHue/jquery.filechooser.js"></script>
- <script src="/static/js/Source/jHue/jquery.contextmenu.js"></script>
- <script src="/static/js/Source/jHue/jquery.selector.js"></script>
- <script src="/static/js/Source/jHue/jquery.alert.js"></script>
- <script src="/static/ext/js/jquery/plugins/jquery.simpleplaceholder.js"></script>
- <script src="/static/ext/js/jquery/plugins/jquery.dataTables.1.8.2.min.js"></script>
- <script src="/static/ext/js/bootstrap.min.js"></script>
- <script src="/static/ext/js/fileuploader.js"></script>
- <script type="text/javascript" charset="utf-8">
- $(document).ready(function(){
- $("#username").showUsername();
- $("input:text[placeholder]").simplePlaceholder();
- $(".submitter").keydown(function(e){
- if (e.keyCode==13){
- $(this).closest("form").submit();
- }
- }).change(function(){
- $(this).closest("form").submit();
- });
- $("#checkConfig").load("/debug/check_config_ajax");
- });
- </script>
- </head>
- <body>
- <div class="navbar navbar-fixed-top">
- <div class="navbar-inner">
- <div class="container-fluid">
- <a class="brand" href="#">Hue 2</a>
- <div class="nav-collapse">
- <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>
- <li class="divider-vertical"></li>
- <li id="checkConfig"><li>
- </ul>
- <p class="navbar-text pull-right">Logged in as <strong><span id="username">xxx</span></strong> - <a href="/accounts/logout/">Sign out</a></p>
- </div>
- </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>
|