Guest User

Untitled

a guest
Jan 16th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. @foreach (var item in Model)
  2. {
  3. if (item.Status == "New")
  4. {
  5. <div class="panel panel-default">
  6. <div class="panel-heading">
  7. <a class="btn btn-primary" data-toggle="collapse" href="#imageGallery" style="width: 100%">
  8. @Html.DisplayFor(modelItem => item.Title)
  9. </a>
  10. </div>
  11. <div class="panel-body collapse" id="imageGallery">
  12. @Html.DisplayFor(modelItem => item.Title)<br />
  13. @Html.DisplayFor(modelItem => item.Content) <br />
  14. @Html.DisplayFor(modelItem => item.Employee.Name) <br />
  15. @Html.DisplayFor(modelItem => item.Title) <br />
  16. @Html.DisplayFor(modelItem => item.DateFrom)
  17. </div>
  18. </div>
  19. }
  20. }
Add Comment
Please, Sign In to add comment