# Resources:Diagrams:Projects:Generic:Interface View:Header View #
* [[../|(UP)]]
{{indexmenu>.#2|nsort tsort}}
## Summary ##
@startuml
!includeurl http://skysigal.com/_media/resources/configuration/plantuml/minimalist.txt
skinparam nodesep 30
skinparam ranksep 30
scale 0.8
scale max 800 width
allow_mixing
title Interface Header View
component "Header\nContainerView" {
component "Context\nContainerView" as C1 {
component "Sponsor\nContext\nOutputView" as S
component "Application\nContext\nOutputView" as A
component "Oranisation\nContext\nContainerView" as O
component "User\nContext\nContainerView" as U
S -[HIDDEN]RIGHT- A
S -[HIDDEN]DOWN- O
A -[HIDDEN]DOWN- U
}
component "Navigation\nContainerView" as NavigationContainerView {
component "Options\nInputView" as NO
component "History\nOutputView" as NH
NO -[HIDDEN]RIGHT- NH
}
C1 -[HIDDEN]DOWN- NavigationContainerView
}