Commit 6329b8d4 by Bridger Maxwell

Now displaying full name on the dashboard, instead of location. The icon is just…

Now displaying full name on the dashboard, instead of location. The icon is just a generic info icon, for now.
parent 3801dc6e
......@@ -73,6 +73,10 @@
&.email-icon {
@include background-image(url('../images/portal-icons/email-icon.png'));
}
&.name-icon {
@include background-image(url('../images/portal-icons/course-info-icon.png'));
}
&.location-icon {
@include background-image(url('../images/portal-icons/home-icon.png'));
......
......@@ -15,10 +15,10 @@
<section class="user-info">
<ul>
<li>
<span class="title"><div class="icon email-icon"></div>Email</span><span class="data">${ user.email }</span>
<span class="title"><div class="icon name-icon"></div>Full Name</span><span class="data">${ user.profile.name | h }</span>
</li>
<li>
<span class="title"><div class="icon location-icon"></div>Location</span><span class="data">${ user.profile.location }</span>
<span class="title"><div class="icon email-icon"></div>Email</span><span class="data">${ user.email | h }</span>
</li>
</ul>
</section>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment