@(structure: lila.practice.PracticeStructure, form: Form[_])(implicit ctx: Context) @mod.layout( title = "Practice structure", active = "practice", moreCss = cssTag("mod-practice.css")) {

Practice config

@errMsg(form("text"))
    @structure.sections.map { section =>
  1. @section.name (#@section.id)

      @section.studies.map { stud =>
    1. @stud.name (#@stud.id)

      @stud.desc
        @stud.chapters.map { cha =>
      1. @cha.name
      2. }
    2. }
  2. }
}