@(followers: List[(UUID, String, String, String)], name: String, profileId: UUID, prev: Int, next: Int, limit: Int)(implicit user: Option[models.User]) @main("Followers") {

@name's Followers

@for(row <- followers) { @users.tile(row, "col-lg-2 col-md-2 col-sm-3 col-xs-4", false) } @if(followers.size < 1) {

This area will show users that follow you. Ask other users to follow you here

}
}