Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. <div class="form-group">
  2. <div class="col-md-10 col-md-offset-1">
  3. <h3>Tick the areas your club is interested/runs events in</h3>
  4. </div>
  5. </div>
  6. <div class="col-md-offset-1">
  7. @for (int i = 0; i < Model.ClubTypeInterests.Count(); i++)
  8. {
  9. <div>
  10. @Html.HiddenFor(x => Model.ClubTypeInterests[i].InterestId)
  11. @Html.CheckBoxFor(x => Model.ClubTypeInterests[i].selected)
  12. @Html.LabelFor(x => Model.ClubTypeInterests[i].ListInterestName, Model.ClubTypeInterests[i].ListInterestName)
  13. </div>
  14. }
  15. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement