Showing the data of the right side of the TimeLine
Showing the data of the right side of the TimeLine How can I show the description Data on the left or the right side of the timeline acording of it Candidate.Saving result? If it's Candidate.Saving == true it should be on the left, if it's Candidate.Saving==false it should be on the right side of the time line. I will shou here my candidate Model And my View. Candidate.Saving == true Candidate.Saving==false public class Candidate : BaseEntity { public int Id { get; set; } public string Name { get; set; } public int Number { get; set; } public string ProfileText { get; set; } public Byte CV { get; set; } public string CVNAME { get; set; } public List<Profile> ProfileList { get; set; } public String Description { get; set; } public Boolean Saving { get; set; } public string Title { get; set; } public DateTime DateOfDescription { get; set; } } Here is my view: @model HCCBPOHR.Data.Candidate @{ ViewData["Title"] = ...