Index.cshtml 765 B

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