Skip to content

Instantly share code, notes, and snippets.

@johntbush
Created April 9, 2014 05:00
Show Gist options
  • Save johntbush/10227532 to your computer and use it in GitHub Desktop.
Save johntbush/10227532 to your computer and use it in GitHub Desktop.
implicit method example
@import model.Conversions._
...
@for(meeting <- meetings) {
...
@if(meeting.isJoinable) {
<a class="btn btn-primary" href='@meeting.joinUrl'> @Messages("tool.view.join")</a>
}
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment