Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. <tbody>
  2. @foreach (var item in Model.types)
  3. {
  4. DateTime? datereq = item.DateTimeRequested;
  5. DateTime? datecreate = item.DateTimeCreated;
  6. <tr>
  7. <td style="font-weight:bold;">@datereq.Value.ToString("MM/dd/yyyy hh:mm tt")</td>
  8. <td>@item.InspectionRequest.ProjectSubNumberString-@item.Id</td>
  9. <td>@item.Version</td>
  10. <td>@datecreate.Value.ToString("MM/dd/yyyy hh:mm tt")</td>
  11. <td>@item.InspectionRequest.Subcontractor</td>
  12. <td>@item.Type</td>
  13. <td>@item.InspectionRequest.SpecificationSection</td>
  14. <td>@item.Location</td>
  15. <td><a href="~/InspectionRequests/Show/@item.InspectionRequestId">Edit</a></td>
  16. </tr>
  17. }
  18. </tbody>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement