diff --git a/swad_centre.c b/swad_centre.c index f37ee41b4..b219ecd44 100644 --- a/swad_centre.c +++ b/swad_centre.c @@ -399,6 +399,7 @@ static void Ctr_Configuration (bool PrintView) /***** End table *****/ HTM_TABLE_End (); + /***** End of left part *****/ HTM_DIV_End (); /**************************** Right part **********************************/ diff --git a/swad_changelog.h b/swad_changelog.h index 2e6951beb..ca0f12ef4 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -492,7 +492,7 @@ enscript -2 --landscape --color --file-align=2 --highlight --line-numbers -o - * En OpenSWAD: ps2pdf source.ps destination.pdf */ -#define Log_PLATFORM_VERSION "SWAD 19.101.1 (2019-12-28)" +#define Log_PLATFORM_VERSION "SWAD 19.101.2 (2019-12-28)" #define CSS_FILE "swad19.101.1.css" #define JS_FILE "swad19.91.1.js" /* @@ -502,6 +502,7 @@ ps2pdf source.ps destination.pdf Version 19.103: Dec 28, 2019 Map in country information. (? lines) Version 19.102: Dec 28, 2019 Map in institution information. (? lines) + Version 19.101.2: Dec 28, 2019 Degree information is splitted into two columns. (249303 lines) Version 19.101.1: Dec 28, 2019 Centre information is splitted into two columns. (249297 lines) Version 19.101: Dec 27, 2019 Code refactoring in course, degree, centre, institution and country information. (249255 lines) Version 19.100: Dec 27, 2019 Code refactoring in country information. (249170 lines) diff --git a/swad_degree.c b/swad_degree.c index 6757f574c..415baea0e 100644 --- a/swad_degree.c +++ b/swad_degree.c @@ -327,6 +327,9 @@ static void Deg_Configuration (bool PrintView) /***** Title *****/ Deg_ConfigTitle (PutLink); + /**************************** Left part ***********************************/ + HTM_DIV_Begin ("class=\"HIE_CFG_LEFT\""); + /***** Begin table *****/ HTM_TABLE_BeginWidePadding (2); @@ -361,6 +364,9 @@ static void Deg_Configuration (bool PrintView) /***** End table *****/ HTM_TABLE_End (); + /***** End of left part *****/ + HTM_DIV_End (); + /***** End box *****/ Box_BoxEnd (); } @@ -410,12 +416,12 @@ static void Deg_ConfigCentre (bool PrintView,bool PutForm) HTM_TR_Begin (NULL); /* Label */ - Frm_LabelColumn ("RM",PutForm ? "OthCtrCod" : + Frm_LabelColumn ("RT",PutForm ? "OthCtrCod" : NULL, Txt_Centre); /* Data */ - HTM_TD_Begin ("class=\"DAT LM\""); + HTM_TD_Begin ("class=\"DAT LB\""); if (PutForm) { /* Get list of centres of the current institution */ @@ -525,10 +531,10 @@ static void Deg_ConfigNumCrss (void) HTM_TR_Begin (NULL); /* Label */ - Frm_LabelColumn ("RM",NULL,Txt_Courses); + Frm_LabelColumn ("RT",NULL,Txt_Courses); /* Data */ - HTM_TD_Begin ("class=\"LM\""); + HTM_TD_Begin ("class=\"LB\""); Frm_StartFormGoTo (ActSeeCrs); Deg_PutParamDegCod (Gbl.Hierarchy.Deg.DegCod); snprintf (Gbl.Title,sizeof (Gbl.Title), @@ -556,12 +562,12 @@ static void Deg_ShowNumUsrsInCrssOfDeg (Rol_Role_t Role) HTM_TR_Begin (NULL); /* Label */ - Frm_LabelColumn ("RM",NULL, + Frm_LabelColumn ("RT",NULL, Role == Rol_UNK ? Txt_Users_in_courses : Txt_ROLES_PLURAL_Abc[Role][Usr_SEX_UNKNOWN]); /* Data */ - HTM_TD_Begin ("class=\"DAT LM\""); + HTM_TD_Begin ("class=\"DAT LB\""); HTM_Unsigned (Usr_GetNumUsrsInCrssOfDeg (Role,Gbl.Hierarchy.Deg.DegCod)); HTM_TD_End ();