{{ t('Agents') }}
@for (file of filetypeWithFilesVar?.agents; track $index) {
{{ file.filename }}
}
{{ t('Special agents') }}
@for (file of filetypeWithFilesVar?.special; track $index) {
{{ file.filename }}
}
{{ t('Example configurations') }}
@for (file of filetypeWithFilesVar?.cfg_examples; track $index) {
{{ file.filename }}
}
{{ t('Plugins') }}
@for (file of filetypeWithFilesVar?.plugins; track $index) {
{{ file.filename }}
}
{{ t('Other files') }}
@for (file of filetypeWithFilesVar?.files; track $index) {
{{ file.filename }}
}