Version 18.7.3

This commit is contained in:
Antonio Cañas Vargas 2018-10-18 16:56:07 +02:00
parent 268d9b70cd
commit 7ffe31f659
2 changed files with 11 additions and 3 deletions

View File

@ -53,7 +53,8 @@ extern struct Globals Gbl;
/****************************** Private constants ****************************/ /****************************** Private constants ****************************/
/*****************************************************************************/ /*****************************************************************************/
#define Att_ATTENDANCE_TABLE_ID "att_table" #define Att_ATTENDANCE_TABLE_ID "att_table"
#define Att_ATTENDANCE_DETAILS_ID "att_details"
/*****************************************************************************/ /*****************************************************************************/
/******************************** Private types ******************************/ /******************************** Private types ******************************/
@ -3132,7 +3133,7 @@ static void Att_PutButtonToShowDetails (void)
extern const char *Txt_Show_more_details; extern const char *Txt_Show_more_details;
/***** Button to show more details *****/ /***** Button to show more details *****/
Act_StartForm (Gbl.Action.Act); Act_StartFormAnchor (Gbl.Action.Act,Att_ATTENDANCE_DETAILS_ID);
Par_PutHiddenParamChar ("ShowDetails",'Y'); Par_PutHiddenParamChar ("ShowDetails",'Y');
Grp_PutParamsCodGrps (); Grp_PutParamsCodGrps ();
Usr_PutHiddenParUsrCodAll (Gbl.Action.Act,Gbl.Usrs.Select[Rol_UNK]); Usr_PutHiddenParUsrCodAll (Gbl.Action.Act,Gbl.Usrs.Select[Rol_UNK]);
@ -3516,6 +3517,9 @@ static void Att_ListStdsWithAttEventsDetails (unsigned NumStdsInList,
/***** Initialize structure with user's data *****/ /***** Initialize structure with user's data *****/
Usr_UsrDataConstructor (&UsrDat); Usr_UsrDataConstructor (&UsrDat);
/***** Start section with attendance details *****/
Lay_StartSection (Att_ATTENDANCE_DETAILS_ID);
/***** Start box and table *****/ /***** Start box and table *****/
Box_StartBoxTable (NULL,Txt_Details,NULL, Box_StartBoxTable (NULL,Txt_Details,NULL,
NULL,Box_NOT_CLOSABLE,2); NULL,Box_NOT_CLOSABLE,2);
@ -3537,6 +3541,9 @@ static void Att_ListStdsWithAttEventsDetails (unsigned NumStdsInList,
/***** End table and box *****/ /***** End table and box *****/
Box_EndBoxTable (); Box_EndBoxTable ();
/***** End section with attendance details *****/
Lay_EndSection ();
/***** Free memory used for user's data *****/ /***** Free memory used for user's data *****/
Usr_UsrDataDestructor (&UsrDat); Usr_UsrDataDestructor (&UsrDat);
} }

View File

@ -355,10 +355,11 @@ En OpenSWAD:
ps2pdf source.ps destination.pdf ps2pdf source.ps destination.pdf
*/ */
#define Log_PLATFORM_VERSION "SWAD 18.7.2 (2018-10-18)" #define Log_PLATFORM_VERSION "SWAD 18.7.3 (2018-10-18)"
#define CSS_FILE "swad18.4.css" #define CSS_FILE "swad18.4.css"
#define JS_FILE "swad17.17.1.js" #define JS_FILE "swad17.17.1.js"
/* /*
Version 18.7.3: Oct 18, 2018 Changes in layout of list of attendance. (236608 lines)
Version 18.7.2: Oct 18, 2018 Changes in layout of list of attendance. (236602 lines) Version 18.7.2: Oct 18, 2018 Changes in layout of list of attendance. (236602 lines)
Version 18.7.1: Oct 18, 2018 Changes in layout of list of attendance. (236596 lines) Version 18.7.1: Oct 18, 2018 Changes in layout of list of attendance. (236596 lines)
Version 18.7: Oct 18, 2018 Changes in layout of list of attendance. (236570 lines) Version 18.7: Oct 18, 2018 Changes in layout of list of attendance. (236570 lines)