Newer
Older
gitbucket_jkp / src / main / twirl / helper / information.scala.html
@takezoe takezoe on 10 Jul 2013 169 bytes (refs #28)Fix information message.
@(info: Option[Any])
@if(info.isDefined){
  <div class="alert alert-info">
    <button type="button" class="close" data-dismiss="alert">×</button>
    @info
  </div>
}