diff --git a/swad_changelog.h b/swad_changelog.h index 531774bc1..0daef15ae 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -134,13 +134,14 @@ /****************************** Public constants *****************************/ /*****************************************************************************/ -#define Log_PLATFORM_VERSION "SWAD 15.150.10 (2016-03-18)" +#define Log_PLATFORM_VERSION "SWAD 15.151.1 (2016-03-18)" #define CSS_FILE "swad15.150.2.css" #define JS_FILE "swad15.131.3.js" // Number of lines (includes comments but not blank lines) has been got with the following command: // nl swad*.c swad*.h css/swad*.css py/swad*.py js/swad*.js soap/swad*.h sql/swad*.sql | tail -1 /* + Version 15.151.1: Mar 18, 2016 Changes in layout of groups. (195929 lines) Version 15.151: Mar 18, 2016 Changes in layout of header class photo. (195930 lines) Version 15.150.10:Mar 18, 2016 Icon to print calendar integrated in frame. (195961 lines) Version 15.150.9: Mar 18, 2016 Icons to print/show-all students/teachers integrated in frame. (195957 lines) diff --git a/swad_group.c b/swad_group.c index 737969f78..7c899658f 100644 --- a/swad_group.c +++ b/swad_group.c @@ -247,46 +247,44 @@ static void Grp_ShowFormSeveralGrps (Act_Action_t NextAction) /***** Put parameters needed depending on the action *****/ Usr_PutExtraParamsUsrList (NextAction); - /***** Start table *****/ - Lay_StartRoundFrameTable (NULL,2,Txt_Groups); + /***** Start frame *****/ + Lay_StartRoundFrame (NULL,Txt_Groups,NULL); /***** Select all groups *****/ - fprintf (Gbl.F.Out,"" - "" + fprintf (Gbl.F.Out,"
" "" " %s" - "" - "", + "
", Txt_All_groups); /***** Get list of groups types and groups in this course *****/ Grp_GetListGrpTypesAndGrpsInThisCrs (Grp_ONLY_GROUP_TYPES_WITH_GROUPS); /***** List the groups for each group type *****/ + fprintf (Gbl.F.Out,""); for (NumGrpTyp = 0; NumGrpTyp < Gbl.CurrentCrs.Grps.GrpTypes.Num; NumGrpTyp++) if (Gbl.CurrentCrs.Grps.GrpTypes.LstGrpTypes[NumGrpTyp].NumGrps) Grp_ListGrpsForMultipleSelection (&Gbl.CurrentCrs.Grps.GrpTypes.LstGrpTypes[NumGrpTyp]); + fprintf (Gbl.F.Out,"
"); /***** Free list of groups types and groups in this course *****/ Grp_FreeListGrpTypesAndGrps (); /***** Submit button *****/ - fprintf (Gbl.F.Out,"" - ""); Act_LinkFormSubmitAnimated (Txt_Update_students_according_to_selected_groups,The_ClassFormBold[Gbl.Prefs.Theme]); Lay_PutCalculateIconWithText (Txt_Update_students_according_to_selected_groups,Txt_Update_students); - fprintf (Gbl.F.Out,"" - ""); + fprintf (Gbl.F.Out,""); - /***** End table *****/ - Lay_EndRoundFrameTable (); + /***** End frame *****/ + Lay_EndRoundFrame (); /***** End form *****/ Act_FormEnd ();