Custom logging
[wsti_pai.git] / Projects / Views / Projects / Edit.cshtml
index 991750af8cae7494b31c71ffd97a337d4224e729..b74df62284063334f04a4dc58b5b105aa5a7bcff 100644 (file)
         <hr />
         @Html.ValidationSummary(true, "", new { @class = "text-danger" })
         @Html.HiddenFor(model => model.id)
+        <div class="form-group">
+            <label class="control-label col-sm-2" for="createdAt">Wpis utworzony:</label>
+            <div class="col-sm-10">
+                <p class="form-control-static">@Html.DisplayFor(model => model.created_at)</p>
+                @Html.EditorFor(model => model.created_at, new { htmlAttributes = new { @class = "form-control", @type = "hidden" } })
+            </div>
+        </div>
+        <div class="form-group">
+            <label class="control-label col-sm-2" for="updatedAt">Ostatnio modyfikowany:</label>
+            <div class="col-sm-10">
+                <input type="text" class="form-control" id="updatedAt" placeholder="@Html.DisplayFor(model => model.updated_at)" readonly>
+            </div>
+        </div>
 
         <div class="form-group">
             @Html.LabelFor(model => model.user_id, "user_id", htmlAttributes: new { @class = "control-label col-md-2" })
             </div>
         </div>
 
-        <div class="form-group">
-            @Html.LabelFor(model => model.created_at, htmlAttributes: new { @class = "control-label col-md-2" })
-            <div class="col-md-10">
-                @Html.EditorFor(model => model.created_at, new { htmlAttributes = new { @class = "form-control" } })
-                @Html.ValidationMessageFor(model => model.created_at, "", new { @class = "text-danger" })
-            </div>
-        </div>
-
-        <div class="form-group">
-            @Html.LabelFor(model => model.updated_at, htmlAttributes: new { @class = "control-label col-md-2" })
-            <div class="col-md-10">
-                @Html.EditorFor(model => model.updated_at, new { htmlAttributes = new { @class = "form-control" } })
-                @Html.ValidationMessageFor(model => model.updated_at, "", new { @class = "text-danger" })
-            </div>
-        </div>
-
         <div class="form-group">
             <div class="col-md-offset-2 col-md-10">
                 <input type="submit" value="Zapisz" class="btn btn-default" />