@if (post) {
{{ t('Edit map generator') }} {{ post.name }}
@if (post.type === MapgeneratorTypes.GENERATE_BY_CONTAINER_STRUCTURE) {
@if (post.containers._ids.length === 0) {
{{ t('Please select a container.') }}
}
{{ t('A map is created for the selected container and its sub-containers, including all hosts in each container. Empty containers are skipped.') }}
} @if (this.post.type === MapgeneratorTypes.GENERATE_BY_HOSTNAME_SPLITTING) {
{{ t('Levels:') }}
{{ t('The levels are automatically created based on the hostnames and a separator pattern. Each level is created as a map. All hosts are added to the last level. This allows overview maps to be generated automatically, which become more detailed with each level. Hosts in root container will be ignored.') }}
{{ t('For example with host name:') }}
  • DE-Fulda_MyCompany_LinuxServer-LoadBalancerNetScaler
  • DE-Fulda_MyCompany_LinuxServer-Webserver01
{{ t('Divider') }} - {{ t('Divider') }} _ {{ t('Divider') }} _ {{ t('Divider') }} - {{ t('Remaining part of the name') }} {{ t('Maps') }} DE Fulda MyCompany LinuxServer LoadBalancerNetScaler DE Fulda MyCompany LinuxServer Webserver01
  • DE
    • Fulda
      • MyCompany
        • LinuxServer
          • DE-Fulda_MyCompany_LinuxServer-LoadBalancerNetScaler
          • DE-Fulda_MyCompany_LinuxServer-Webserver01

@for (level of post.mapgenerator_levels; track $index; let last = $last) {
@if (!$last) { } @else { }
@if (post.mapgenerator_levels[$index].is_container) {
}
}
}
{{ t('Generator Configuration:') }}

}