Relations.cshtml 824 B

1234567891011121314151617181920212223242526272829
  1. @{
  2. ViewBag.Title = "Relationen";
  3. Layout = "~/Views/Shared/_Layout.cshtml";
  4. }
  5. @model GreenTree.Nachtragsmanagement.Web.Models.Test.DbRelationModel
  6. @Html.Partial("~/Views/Shared/_HeaderNavBar.cshtml")
  7. <h2>Datenbank - Relationen</h2>
  8. <div style="width: auto; padding-top: 8px; border-top: 1px solid black">
  9. <div style="float: left">
  10. <h6>Users:</h6>
  11. @Html.TextAreaFor(m => m.UserJson, new { rows = 50, cols = 60 })
  12. </div>
  13. <div style="float: left">
  14. <h6>Deviations:</h6>
  15. @Html.TextAreaFor(m => m.DeviationJson, new { rows = 50, cols = 60 })
  16. </div>
  17. <div style="float: left">
  18. <h6>Sites:</h6>
  19. @Html.TextAreaFor(m => m.SiteJson, new { rows = 50, cols = 60 })
  20. </div>
  21. <div style="float: left">
  22. <h6>Appendices:</h6>
  23. @Html.TextAreaFor(m => m.AppendixJson, new { rows = 50, cols = 60 })
  24. </div>
  25. </div>