@(cats: Seq[Cat], dogs: Seq[Dog]) @main("Cat & Dog database") {

Insert a kitty cat here:

Previously inserted cats:

@for(c <- cats){ }
NameColor
@c.name@c.color

Insert a kitty dog here:

Previously inserted dogs:

@for(d <- dogs){ }
NameColor
@d.name@d.color
}