OLD | NEW |
1 <link rel="import" href="../../../../packages/polymer/polymer.html"> | 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> |
2 <link rel="import" href="nav_bar.html"> | 2 <link rel="import" href="nav_bar.html"> |
3 <link rel="import" href="observatory_element.html"> | 3 <link rel="import" href="observatory_element.html"> |
4 | 4 |
5 <polymer-element name="service-exception-view" extends="observatory-element"> | 5 <polymer-element name="service-exception-view" extends="observatory-element"> |
6 <template> | 6 <template> |
7 <link rel="stylesheet" href="css/shared.css"> | 7 <link rel="stylesheet" href="css/shared.css"> |
8 <nav-bar> | 8 <nav-bar> |
9 <top-nav-menu last="{{ true }}"></top-nav-menu> | 9 <top-nav-menu last="{{ true }}"></top-nav-menu> |
10 <nav-control></nav-control> | 10 <nav-control></nav-control> |
11 </nav-bar> | 11 </nav-bar> |
12 <div class="content-centered"> | 12 <div class="content-centered"> |
13 <h1>{{ exception.kind }}</h1> | 13 <h1>{{ exception.kind }}</h1> |
14 <br> | 14 <br> |
15 <div class="well">{{ exception.message }}</div> | 15 <div class="well">{{ exception.message }}</div> |
16 <template if="{{ exception.response != '' }}"> | 16 <template if="{{ exception.response != '' }}"> |
17 <div class="well">{{ exception.response }}</div> | 17 <div class="well">{{ exception.response }}</div> |
18 </template> | 18 </template> |
19 </div> | 19 </div> |
20 </template> | 20 </template> |
21 </polymer-element> | 21 </polymer-element> |
22 | 22 |
23 <script type="application/dart" src="service_exception_view.dart"></script> | 23 <script type="application/dart" src="service_exception_view.dart"></script> |
OLD | NEW |