@(userId: String, blocked: Boolean, followable: Boolean, relation: Option[lila.relation.Relation] = None)(implicit ctx: Context)
@relation match {
case None if followable && !blocked=> {
@trans.follow()
}
case Some(true) => {
@trans.following()
}
case Some(false) => {
@trans.blocked()
}
case _ => {
}
}