Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
atlas
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dataplatform
atlas
Commits
41c81145
Commit
41c81145
authored
9 years ago
by
dileep8014
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5 from MPR-Global/HDPDGI-34-1
Hdpdgi 34 1
parents
cbf662db
9cea4f64
No related merge requests found
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
197 additions
and
116 deletions
+197
-116
common.css
dashboard/v2/public/css/common.css
+5
-1
app.js
dashboard/v2/public/js/app.js
+4
-0
routes.js
dashboard/v2/public/js/routes.js
+1
-1
detailsController.js
dashboard/v2/public/modules/details/detailsController.js
+4
-1
attribute.html
dashboard/v2/public/modules/details/views/attribute.html
+4
-14
details.html
dashboard/v2/public/modules/details/views/details.html
+34
-12
schema.html
dashboard/v2/public/modules/details/views/schema.html
+2
-2
homeRoutes.js
dashboard/v2/public/modules/home/homeRoutes.js
+2
-2
header.html
dashboard/v2/public/modules/home/views/header.html
+1
-1
lineageController.js
dashboard/v2/public/modules/lineage/lineageController.js
+0
-0
lineageResource.js
dashboard/v2/public/modules/lineage/lineageResource.js
+1
-4
inputs.html
dashboard/v2/public/modules/lineage/views/inputs.html
+23
-0
outputs.html
dashboard/v2/public/modules/lineage/views/outputs.html
+23
-0
navigationController.js
...oard/v2/public/modules/navigation/navigationController.js
+2
-2
navigationModule.js
dashboard/v2/public/modules/navigation/navigationModule.js
+1
-3
searchController.js
dashboard/v2/public/modules/search/searchController.js
+5
-4
searchDirective.js
dashboard/v2/public/modules/search/searchDirective.js
+34
-0
searchRoutes.js
dashboard/v2/public/modules/search/searchRoutes.js
+6
-3
search.html
dashboard/v2/public/modules/search/views/search.html
+3
-2
searchResult.html
dashboard/v2/public/modules/search/views/searchResult.html
+9
-10
foot.html
dashboard/v2/public/views/includes/foot.html
+2
-13
head.html
dashboard/v2/public/views/includes/head.html
+31
-41
No files found.
dashboard/v2/public/css/common.css
View file @
41c81145
...
...
@@ -120,7 +120,10 @@ footer.navbar-bottom img {
min-height
:
0
;
padding
:
5px
5px
5px
0
;
}
#Details
{
height
:
800px
;
}
.pagination
{
float
:
right
;
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
dashboard/v2/public/js/app.js
View file @
41c81145
...
...
@@ -38,6 +38,10 @@ angular.module('dgc').factory('lodash', ['$window',
function
(
$window
)
{
return
$window
.
d3
;
}
]).
factory
(
'dagreD3'
,
[
'$window'
,
function
(
$window
)
{
return
$window
.
dagreD3
;
}
]).
factory
(
'Global'
,
[
'$window'
,
function
(
$window
)
{
return
{
...
...
This diff is collapsed.
Click to expand it.
dashboard/v2/public/js/routes.js
View file @
41c81145
...
...
@@ -23,6 +23,6 @@ angular.module('dgc').config(['$locationProvider', '$urlRouterProvider',
function
(
$locationProvider
,
$urlRouterProvider
)
{
$locationProvider
.
hashPrefix
(
'!'
);
// For unmatched routes:
$urlRouterProvider
.
otherwise
(
'/'
);
$urlRouterProvider
.
otherwise
(
'/
search
'
);
}
]);
This diff is collapsed.
Click to expand it.
dashboard/v2/public/modules/details/detailsController.js
View file @
41c81145
...
...
@@ -21,8 +21,11 @@
angular
.
module
(
'dgc.details'
).
controller
(
'DetailsController'
,
[
'$scope'
,
'$stateParams'
,
'DetailsResource'
,
function
(
$scope
,
$stateParams
,
DetailsResource
)
{
$scope
.
details
=
DetailsResource
.
get
({
DetailsResource
.
get
({
id
:
$stateParams
.
id
},
function
(
data
)
{
$scope
.
details
=
data
;
$scope
.
tableName
=
data
.
values
.
name
;
});
$scope
.
isString
=
angular
.
isString
;
...
...
This diff is collapsed.
Click to expand it.
dashboard/v2/public/modules/details/views/attribute.html
View file @
41c81145
...
...
@@ -22,18 +22,9 @@
<!--{{value}}-->
<!--</div>-->
<div
class=
"row"
data-ng-repeat=
"(key1,value1) in value"
ng-if=
"value1"
>
<div
class=
"col-md-6"
data-ng-if=
"!isString(value1)"
data-ng-repeat=
"(key2,value2) in value1 track by $index"
></div>
<div
data-ng-if=
"isString(value2)"
data-ng-repeat=
"(key3,value3) in value2"
>
{{key3}}: {{value3}}
</div>
<div
class=
"col-md-6"
data-ng-if=
"isString(value1)"
>
{{key1}} : {{value1 | date:'medium'}}
</div>
<div
>
<table
class=
"table table-bordered"
ng-if=
"value && !(key==='columns') && !(key==='name') && !(key==='description')"
>
<thead>
<tr
>
<th>
{{key}}
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
{{value}}
</td>
</tr>
</tbody>
</table>
</div>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
dashboard/v2/public/modules/details/views/details.html
View file @
41c81145
...
...
@@ -17,23 +17,44 @@
-->
<div
role=
"tabpanel"
>
<div
role=
"tabpanel"
class=
"col-md-7 col-lg-offset-3"
data-ng-controller=
"DetailsController"
>
<h2>
{{details.values.name}}
</h2>
<h4>
{{details.values.description}}
</h4>
<!-- Nav tabs -->
<ul
class=
"nav nav-tabs"
role=
"tablist"
>
<li
role=
"presentation"
><a
href=
"#home"
aria-controls=
"home
"
role=
"tab"
data-toggle=
"tab"
>
Details
</a></li>
<li
role=
"presentation"
><a
href=
"#profile"
aria-controls=
"profile
"
role=
"tab"
data-toggle=
"tab"
>
Schema
</a></li>
<li
role=
"presentation"
class=
"active"
><a
href=
"#messages"
aria-controls=
"messages
"
role=
"tab"
data-toggle=
"tab"
>
Output
</a></li>
<
!--<li role="presentation"><a href="#settings" aria-controls="settings" role="tab" data-toggle="tab">Settings</a></li>--
>
<li
role=
"presentation"
class=
"active"
><a
href=
"#Details"
aria-controls=
"Details
"
role=
"tab"
data-toggle=
"tab"
>
Details
</a></li>
<li
role=
"presentation"
data-ng-if=
"details.typeName=='Table'"
><a
href=
"#Schema"
aria-controls=
"Schema
"
role=
"tab"
data-toggle=
"tab"
>
Schema
</a></li>
<li
role=
"presentation"
data-ng-if=
"details.typeName=='Table'"
><a
href=
"#Output"
aria-controls=
"Output
"
role=
"tab"
data-toggle=
"tab"
>
Output
</a></li>
<
li
role=
"presentation"
data-ng-if=
"details.typeName=='Table'"
><a
href=
"#Input"
aria-controls=
"Input"
role=
"tab"
data-toggle=
"tab"
>
Input
</a></li
>
</ul>
<!-- Tab panes -->
<div
class=
"tab-content"
data-ng-controller=
"DetailsController"
>
<div
role=
"tabpanel"
class=
"tab-pane "
id=
"home"
>
<section
data-ng-repeat=
"(key,value) in details"
data-ng-if=
"isString(value)"
data-ng-include=
"'/modules/details/views/attribute.html'"
></section>
<div
class=
"tab-content"
>
<div
role=
"tabpanel"
class=
"tab-pane active"
id=
"Details"
>
<table
class=
"table table-bordered"
>
<thead>
<tr
>
<th>
Key
</th>
<th>
Value
</th>
</tr>
</thead>
<tbody>
<tr
data-ng-repeat=
"(key,value) in details.values"
ng-if=
"value && !(key==='columns') && !(key==='name') && !(key==='description')"
>
<td>
{{key}}
</td>
<td
data-ng-if=
"!isString(value)"
data-ng-include=
"'/modules/details/views/attribute.html'"
></td>
<td
data-ng-if=
"isString(value)"
>
{{value | date:'medium'}}
</td>
</tr>
</tbody>
</table>
</div>
<div
role=
"tabpanel"
class=
"tab-pane"
id=
"
profile
"
>
<section
data-ng-include=
"'/modules/details/views/schema.html'"
></section></div>
<div
role=
"tabpanel"
class=
"tab-pane
active"
id=
"messages"
><div
data-ng-include=
"'/modules/lineage/views/lineage
.html'"
></div></div>
<
!--<div role="tabpanel" class="tab-pane" id="settings">...</div>--
>
<div
role=
"tabpanel"
class=
"tab-pane"
id=
"
Schema
"
>
<section
data-ng-include=
"'/modules/details/views/schema.html'"
></section></div>
<div
role=
"tabpanel"
class=
"tab-pane
"
id=
"Output"
><div
data-ng-include=
"'/modules/lineage/views/outputs
.html'"
></div></div>
<
div
role=
"tabpanel"
class=
"tab-pane"
id=
"Input"
><div
data-ng-include=
"'/modules/lineage/views/inputs.html'"
></div></div
>
</div>
</div>
</div>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
dashboard/v2/public/modules/details/views/schema.html
View file @
41c81145
...
...
@@ -15,7 +15,6 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<div>
<table
class=
"table table-bordered"
>
<thead>
...
...
@@ -52,4 +51,4 @@
</tr>
</tbody>
</table>
</div>
</div>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
dashboard/v2/public/modules/home/homeRoutes.js
View file @
41c81145
...
...
@@ -24,8 +24,8 @@ angular.module('dgc.home.routes', []).config(['$stateProvider',
// states for my app
$stateProvider
.
state
(
'home'
,
{
url
:
'/'
,
templateUrl
:
'/modules/
home/views/home
.html'
url
:
'/
search
'
,
templateUrl
:
'/modules/
search/views/search
.html'
});
}
]);
This diff is collapsed.
Click to expand it.
dashboard/v2/public/modules/home/views/header.html
View file @
41c81145
...
...
@@ -24,7 +24,7 @@
<span
class=
"icon-bar"
></span>
<span
class=
"icon-bar"
></span>
</button>
<a
data-ui-sref=
"home
"
data-ui-sref-active=
"active"
><h1>
DGI
</h1></a>
<a
data-ui-sref=
"search
"
data-ui-sref-active=
"active"
><h1>
DGI
</h1></a>
</div>
<nav
class=
"collapse navbar-collapse"
data-collapse=
"isCollapsed"
data-role=
"navigation"
>
<ul
class=
"navbar-nav nav"
data-ng-if=
"isLoggedIn()"
>
...
...
This diff is collapsed.
Click to expand it.
dashboard/v2/public/modules/lineage/lineageController.js
View file @
41c81145
This diff is collapsed.
Click to expand it.
dashboard/v2/public/modules/lineage/lineageResource.js
View file @
41c81145
...
...
@@ -19,8 +19,5 @@
'use strict'
;
angular
.
module
(
'dgc.lineage'
).
factory
(
'LineageResource'
,
[
'$resource'
,
function
(
$resource
)
{
return
$resource
(
'/api/metadata/discovery/search/relationships/:id'
,
{
depth
:
3
,
edgesToFollow
:
'HiveLineage.sourceTables.0,HiveLineage.sourceTables.1,HiveLineage.sourceTables.2,HiveLineage.tableName'
});
return
$resource
(
'/api/metadata/lineage/hive/table/:tableName/:type/graph'
,
{});
}]);
This diff is collapsed.
Click to expand it.
dashboard/v2/public/modules/lineage/views/inputs.html
0 → 100644
View file @
41c81145
<!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF 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.
-->
<div
data-ng-controller=
"LineageController"
>
<div
id=
"inputs"
>
<svg
class=
"lineage-viz"
><g></svg>
</div>
</div>
This diff is collapsed.
Click to expand it.
dashboard/v2/public/modules/lineage/views/outputs.html
0 → 100644
View file @
41c81145
<!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF 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.
-->
<div
data-ng-controller=
"LineageController"
>
<div
id=
"outputs"
>
<svg
class=
"lineage-viz"
><g></svg>
</div>
</div>
This diff is collapsed.
Click to expand it.
dashboard/v2/public/modules/navigation/navigationController.js
View file @
41c81145
...
...
@@ -21,6 +21,7 @@
angular
.
module
(
'dgc.navigation'
).
controller
(
'NavigationController'
,
[
'$scope'
,
'NavigationResource'
,
function
(
$scope
,
NavigationResource
)
{
$scope
.
leftnav
=
NavigationResource
.
get
();
$scope
.
updateVar
=
function
(
event
)
{
$scope
.
$$prevSibling
.
query
=
angular
.
element
(
event
.
target
).
text
();
...
...
@@ -28,4 +29,4 @@ angular.module('dgc.navigation').controller('NavigationController', ['$scope', '
};
}
]);
\ No newline at end of file
]);
This diff is collapsed.
Click to expand it.
dashboard/v2/public/modules/navigation/navigationModule.js
View file @
41c81145
...
...
@@ -17,5 +17,4 @@
*/
'use strict'
;
angular
.
module
(
'dgc.navigation'
,[]);
\ No newline at end of file
angular
.
module
(
'dgc.navigation'
,[]);
This diff is collapsed.
Click to expand it.
dashboard/v2/public/modules/search/searchController.js
View file @
41c81145
...
...
@@ -76,9 +76,9 @@ angular.module('dgc.search').controller('SearchController', ['$scope', '$locatio
$scope
.
typeAvailable
=
function
()
{
if
(
$scope
.
results
.
dataType
)
{
return
$scope
.
types
.
indexOf
(
$scope
.
results
.
dataType
.
typeName
&&
$scope
.
results
.
dataType
.
typeName
.
toLowerCase
())
>
-
1
;
}
if
(
$scope
.
results
.
dataType
)
{
return
$scope
.
types
.
indexOf
(
$scope
.
results
.
dataType
.
typeName
&&
$scope
.
results
.
dataType
.
typeName
.
toLowerCase
())
>
-
1
;
}
};
$scope
.
doToggle
=
function
(
$event
,
el
)
{
this
.
isCollapsed
=
!
el
;
...
...
@@ -103,4 +103,4 @@ angular.module('dgc.search').controller('SearchController', ['$scope', '$locatio
$scope
.
search
(
$scope
.
query
);
}
}
]);
]);
\ No newline at end of file
This diff is collapsed.
Click to expand it.
dashboard/v2/public/modules/search/searchDirective.js
0 → 100644
View file @
41c81145
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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.
*/
'use strict'
;
angular
.
module
(
'dgc.search'
).
directive
(
"myDirective"
,
function
()
{
return
{
restrict
:
'EA'
,
template
:
'<a href="javascript: void(0);" button-toggle toggle="isCollapsed" class="show-more" ng-click="isCollapsed = !isCollapsed">..show more</a>'
,
link
:
function
(
$scope
)
{
$scope
.
isCollapsed
=
true
;
console
.
log
(
$scope
.
isCollapsed
);
},
transclude
:
true
,
scope
:
{}
};
});
This diff is collapsed.
Click to expand it.
dashboard/v2/public/modules/search/searchRoutes.js
View file @
41c81145
...
...
@@ -21,16 +21,19 @@
//Setting up route
angular
.
module
(
'dgc.search'
).
config
([
'$stateProvider'
,
function
(
$stateProvider
)
{
// states for my app
$stateProvider
.
state
(
'search'
,
{
url
:
'/search'
,
templateUrl
:
'/modules/search/views/search.html'
,
controller
:
'SearchController'
controller
:
'SearchController'
}).
state
(
'search.results'
,
{
url
:
'/:query'
,
templateUrl
:
'/modules/search/views/searchResult.html'
,
controller
:
'SearchController'
}).
state
(
'search.results'
,
{
url
:
'?query'
,
templateUrl
:
'/modules/search/views/searchResult.html'
,
controller
:
'SearchController'
});
});
}
]);
This diff is collapsed.
Click to expand it.
dashboard/v2/public/modules/search/views/search.html
View file @
41c81145
...
...
@@ -37,9 +37,9 @@
<div
class=
"container"
>
<div
class=
"row"
>
<div
data-ng-include=
"'/modules/navigation/views/navigation.html'"
></div>
<div
data-ng-include=
"'/modules/navigation/views/navigation.html'"
></div>
<div
class=
"col-lg-9"
data-ui-view=
""
style=
"min-height: 1350px;"
></div>
</div>
</div>
</div>
</div>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
dashboard/v2/public/modules/search/views/searchResult.html
View file @
41c81145
...
...
@@ -24,25 +24,24 @@
<ul
class=
"list-unstyled"
>
<li
ng-repeat=
"result in filteredResults"
class=
"searchresults"
>
<h4><a
data-ui-sref=
"details({id:result['$id$'].id})"
>
{{result.name}}
</a></h4>
<p>
{{result.description}}
</p>
<h4><a
data-ui-sref=
"details({id:result['$id$'].id})"
>
{{result.name}}
</a></h4>
<p>
{{result.description}}
</p>
<span
ng-repeat=
"(key, value) in filterSearchResults(result)"
>
<span
ng-show=
"$index < 4"
><b>
{{key}}:
</b>
{{value}}{{$index+1 === limit ? '' : ', '}}
</span>
</span>
<div
collapse=
"isCollapsed"
>
<div
collapse=
"isCollapsed"
>
<span
ng-repeat=
"(key, value) in filterSearchResults(result)"
>
<span
ng-show=
"$index > 4"
><b>
{{key}}:
</b>
{{value}}{{$last ? '' : ', '}}
</span>
</span>
</div>
<a
href
ng-show=
"isCollapsed && (keyLength > 4)"
ng-click=
"doToggle($event,isCollapsed)"
>
..show more
</a>
<a
href
ng-show=
"!isCollapsed"
ng-click=
"doToggle($event,isCollapsed)"
>
..show less
</a>
</div>
<a
href
ng-show=
"isCollapsed && (keyLength > 4)"
ng-click=
"doToggle($event,isCollapsed)"
>
..show more
</a>
<a
href
ng-show=
"!isCollapsed"
ng-click=
"doToggle($event,isCollapsed)"
>
..show less
</a>
<h5>
Tags :
<a
ng-repeat=
"(key, value) in result['$traits$']"
data-ui-sref=
"search.results({query: key})"
>
{{key}}
</a>
</h5>
<div
data-ng-if=
"!searchTypesAvailable"
data-ng-include=
"'/modules/search/views/types/guid.html'"
></div>
</li>
<h5>
Tags :
<a
ng-repeat=
"(key, value) in result['$traits$']"
data-ui-sref=
"search.results({query: key})"
>
{{key}}
</a>
</h5>
<div
data-ng-if=
"!searchTypesAvailable"
data-ng-include=
"'/modules/search/views/types/guid.html'"
></div>
</li>
</ul>
<div
ng-show=
'results.rows.length > 0'
>
<pagination
total-items=
"totalItems"
items-per-page=
"itemsPerPage"
ng-model=
"currentPage"
ng-change=
"pageChanged()"
></pagination>
<p>
</div>
This diff is collapsed.
Click to expand it.
dashboard/v2/public/views/includes/foot.html
View file @
41c81145
...
...
@@ -15,11 +15,6 @@
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<script>
$
(
function
()
{
$
(
'#myTab a:last'
).
tab
(
'show'
)
})
</script>
<!-- Angular JS -->
<script
type=
"text/javascript"
src=
"/lib/angular/angular.min.js"
></script>
<script
type=
"text/javascript"
src=
"/lib/lodash/lodash.min.js"
></script>
...
...
@@ -36,15 +31,8 @@
<script
src=
"http://cpettitt.github.io/project/dagre-d3/latest/dagre-d3.js"
></script>
<script
type=
"text/javascript"
src=
"dist/app.min.js"
></script>
<!-- Enable the tabs -->
<script
type=
"text/javascript"
>
$
(
'#myTabs a'
).
click
(
function
(
e
)
{
e
.
preventDefault
()
$
(
this
).
tab
(
'show'
)
});
</script>
{% if (process.env.NODE_ENV == 'local') %}
<!-- Livereload script rendered -->
<script
type=
"text/javascript"
src=
"http://localhost:35730/livereload.js"
></script>
{% endif %}
{% endif %}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
dashboard/v2/public/views/includes/head.html
View file @
41c81145
...
...
@@ -17,44 +17,33 @@
-->
<head>
<meta
charset=
"utf-8"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge,chrome=1"
>
<meta
name=
"viewport"
content=
"width=device-width,initial-scale=1"
>
<title>
{{app.title}}
</title>
<meta
http-equiv=
"Content-type"
content=
"text/html;charset=UTF-8"
>
<link
href=
"/img/favicon.ico"
rel=
"shortcut icon"
type=
"image/x-icon"
>
<link
rel=
"stylesheet"
href=
"/lib/bootstrap/dist/css/bootstrap.min.css"
>
<link
rel=
"stylesheet"
href=
"/lib/font-awesome/css/font-awesome.min.css"
>
<link
rel=
"stylesheet"
href=
"/css/sticky-footer-navbar.css"
>
<link
rel=
"stylesheet"
href=
"/css/common.css"
>
<link
rel=
"stylesheet"
href=
"/css/lineage.css"
>
<link
rel=
"stylesheet"
href=
"http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css"
>
<script
src=
"https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"
></script>
<script
src=
"http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"
></script>
<script
type=
"text/javascript"
>
jQuery
(
document
).
ready
(
function
(
$
)
{
$
(
'#tabs'
).
tab
();
});
</script>
<style >
</style>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
{% block content %}
<script
type=
"text/javascript"
>
window
.
user
=
{{
JSON
.
stringify
(
user
)}};
window
.
renderErrors
=
{{
JSON
.
stringify
(
renderErrors
)}};
</script>
{% endblock %}
</head>
<meta
charset=
"utf-8"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge,chrome=1"
>
<meta
name=
"viewport"
content=
"width=device-width,initial-scale=1"
>
<title>
{{app.title}}
</title>
<meta
http-equiv=
"Content-type"
content=
"text/html;charset=UTF-8"
>
<link
href=
"/img/favicon.ico"
rel=
"shortcut icon"
type=
"image/x-icon"
>
<link
rel=
"stylesheet"
href=
"/lib/bootstrap/dist/css/bootstrap.min.css"
>
<link
rel=
"stylesheet"
href=
"/lib/font-awesome/css/font-awesome.min.css"
>
<link
rel=
"stylesheet"
href=
"/css/sticky-footer-navbar.css"
>
<link
rel=
"stylesheet"
href=
"/css/common.css"
>
<link
rel=
"stylesheet"
href=
"/css/lineage.css"
>
<link
rel=
"stylesheet"
href=
"http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css"
>
<script
src=
"https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"
></script>
<script
src=
"http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"
></script>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
{% block content %}
<script
type=
"text/javascript"
>
window
.
user
=
{{
JSON
.
stringify
(
user
)}};
window
.
renderErrors
=
{{
JSON
.
stringify
(
renderErrors
)}};
</script>
{% endblock %}
</head>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment