tracked posts
This commit is contained in:
parent
66de98bd0f
commit
51f2d709f3
15 changed files with 1504 additions and 34 deletions
|
|
@ -24,10 +24,10 @@
|
|||
@Html.DisplayFor(model => model.Content)
|
||||
</dd>
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.Modified)
|
||||
@Html.DisplayNameFor(model => model.DateModified)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.Modified)
|
||||
@Html.DisplayFor(model => model.DateModified)
|
||||
</dd>
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.Photo)
|
||||
|
|
@ -36,10 +36,10 @@
|
|||
@Html.DisplayFor(model => model.Photo)
|
||||
</dd>
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.Posted)
|
||||
@Html.DisplayNameFor(model => model.DateCreated)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.Posted)
|
||||
@Html.DisplayFor(model => model.DateCreated)
|
||||
</dd>
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.Rate)
|
||||
|
|
|
|||
|
|
@ -19,11 +19,11 @@
|
|||
|
||||
@SR["Modified"] :
|
||||
|
||||
@Html.DisplayFor(model => model.Modified) -
|
||||
@Html.DisplayFor(model => model.DateModified) -
|
||||
|
||||
@SR[Html.DisplayNameFor(model => model.Posted)] :
|
||||
@SR["Created"] :
|
||||
|
||||
@Html.DisplayFor(model => model.Posted)
|
||||
@Html.DisplayFor(model => model.DateCreated)
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -178,7 +178,7 @@ editorcontenu.on('text-change',function(delta,source){
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@Html.HiddenFor(m=>m.DateCreated)
|
||||
</form>
|
||||
<div>
|
||||
|
||||
|
|
|
|||
|
|
@ -28,9 +28,9 @@
|
|||
<td>
|
||||
<span style="font-size:x-small;"> @item.Author.UserName </span> <br>
|
||||
<span style="font-size:xx-small;">
|
||||
posté le @item.Posted.ToString("dddd d MMM yyyy à H:mm")
|
||||
@if ((item.Modified - item.Posted).Minutes > 10){
|
||||
@:- Modifié le @item.Modified.ToString("dddd d MMM yyyy à H:mm")
|
||||
posté le @item.DateCreated.ToString("dddd d MMM yyyy à H:mm")
|
||||
@if ((item.DateModified - item.DateCreated).Minutes > 10){
|
||||
@:- Modifié le @item.DateModified.ToString("dddd d MMM yyyy à H:mm")
|
||||
}
|
||||
</span>
|
||||
</td>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue