diff options
| author | Michael <[email protected]> | 2017-04-16 19:06:51 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-04-16 19:06:51 -0400 |
| commit | 93b8378398443cf6d2ef384c1fe8419e8263a413 (patch) | |
| tree | 634405632643b960c843179e4d3de5a20fc8caf2 | |
| parent | bb0075072ba3bedcacc3adb1df06879b201cb113 (diff) | |
| download | project-unite-93b8378398443cf6d2ef384c1fe8419e8263a413.tar.gz project-unite-93b8378398443cf6d2ef384c1fe8419e8263a413.tar.bz2 project-unite-93b8378398443cf6d2ef384c1fe8419e8263a413.zip | |
do you wanna build a byte man
| -rw-r--r-- | Project-Unite/Views/Skins/Index.cshtml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Project-Unite/Views/Skins/Index.cshtml b/Project-Unite/Views/Skins/Index.cshtml index fb2d58d..b9764ab 100644 --- a/Project-Unite/Views/Skins/Index.cshtml +++ b/Project-Unite/Views/Skins/Index.cshtml @@ -19,8 +19,7 @@ <table class="table"> <tr> <th style="max-width:128px;"></th> - <th style="width:65%;">Skin</th> - <th style="width:10%;">Popularity</th> + <th style="width:75%;">Skin</th> <th>Download</th> </tr> @foreach(var skin in Model) @@ -30,14 +29,16 @@ <td> @Html.ActionLink(skin.Name, "ViewSkin", "Skins", new { id = skin.Id }, null) <br/> <p>By @Html.UserLink(skin.UserId) on @skin.PostedAt</p> - </td> - <td> - @* First we'll do the likes... *@ + <p>@* First we'll do the likes... *@ <span class="glyphicon glyphicon-thumbs-up"></span> @skin.Likes.Length @* Now the dislikes. *@ <span class="glyphicon glyphicon-thumbs-down"></span> @skin.Dislikes.Length @*Now the views.*@ <span class="glyphicon glyphicon-eye-open"></span> @skin.Views.Length + </p> + + <p>@skin.ShortDescription</p> + </td> <td> <a href="@skin.DownloadUrl" class="btn btn-default"><span class="glyphicon glyphicon-arrow-down"></span> Download this skin</a> |
