From 9f238cc47fd5b9ec546b37986371e73d6ed3c626 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 25 Mar 2017 15:59:50 -0400 Subject: Avatar system :smiley: --- Project-Unite/Views/Manage/ListAvatars.cshtml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Project-Unite/Views/Manage/ListAvatars.cshtml (limited to 'Project-Unite/Views/Manage/ListAvatars.cshtml') diff --git a/Project-Unite/Views/Manage/ListAvatars.cshtml b/Project-Unite/Views/Manage/ListAvatars.cshtml new file mode 100644 index 0000000..d03ea88 --- /dev/null +++ b/Project-Unite/Views/Manage/ListAvatars.cshtml @@ -0,0 +1,22 @@ +@model IEnumerable + +@{ + ViewBag.Title = "Change avatar"; +} + +

Change avatar

+ +

You can choose a new avatar on this page - you can set an existing avatar that you've uploaded or upload a new one.

+ +
+
+ +
+ + @foreach(var avatar in Model.OrderByDescending(x=>x.UploadedAt)) + { +
+ +
+ } +
-- cgit v1.2.3