private void RenderTaskRegistrationInput(Task task, DateTime dag)
 {
     Guid index = Guid.NewGuid();
     this.component.Append("<td class='task_registration" + HighlightVandaag(dag) + HighlightEigenTaak(task) + "'>");
     if (dag <= DateTime.Today)
     {
         //this.component.Append("<div class='uren_readonly " + HighlightVandaag(dag)  + "'>" + TimeSpanHelper.TimeSpanInMinuten(task.TotaalBestedeTijd(this.sprintGebruiker.Gebruiker, dag)) + "</div>");
         this.component.Append("<div class='uren_input" + HighlightVandaag(dag) + HighlightEigenTaak(task) + "'>");
         this.component.Append("<input type='text' name='urenregistratie[" + index + "].AantalUren' id='urenregistratie[" + index + "]_AantalUren' value='" + TimeSpanHelper.TimeSpanInMinuten(task.TotaalBestedeTijd(this.sprintGebruiker.Gebruiker, dag)) + "'/>");
         this.component.Append("<input type='hidden' name='urenregistratie[" + index + "].Dag' id='urenregistratie[" + index + "]_Dag' value='" + dag.ToString("dd-MM-yyyy") + "'/>");
         this.component.Append("<input type='hidden' name='urenregistratie[" + index + "].Task.Id' id='urenregistratie[" + index + "]_Task.Id' value='" + task.Id + "'/>");
         this.component.Append("<input type='hidden' name='urenregistratie[" + index + "].SprintGebruiker.Id' id='urenregistratie[" + index + "]_SprintGebruiker_Id' value='" + this.sprintGebruiker.Id + "'/>");
         this.component.Append("</div>");
     }
     else
     {
         this.component.Append("&nbsp;");
     }
     this.component.Append("</td>");
 }