Skip to content

Instantly share code, notes, and snippets.

@codehaks
Created November 1, 2018 06:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codehaks/137d74cd91604bf7985e45be6e851e86 to your computer and use it in GitHub Desktop.
Save codehaks/137d74cd91604bf7985e45be6e851e86 to your computer and use it in GitHub Desktop.
Star Rating PartialView
@model int
@for (var i = 0; i < 5; i++)
{
if (i < Model)
{
<i class="fa fa-star" style="color:#ffd800"></i>
}
else
{
<i class="fa fa-star-o"></i>
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment