@if (!tagsEditMode) {
@for (
tag of filteredTags;
track trackByFn(
$index,
tag
)
) {
{{ tag.title }}
}
}
@if (tagsEditMode) {
@for (
tag of filteredTags;
track trackByFn(
$index,
tag
)
) {
}
}
@if (
shouldShowCreateTagButton(
newTagInput.value
)
) {
Create "{{
newTagInput.value
}}"
}