Version 17.11.2

This commit is contained in:
Antonio Cañas Vargas 2017-09-29 18:28:04 +02:00
parent 4d8b340db9
commit 0e8a50f938
2 changed files with 15 additions and 14 deletions

View File

@ -252,13 +252,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 17.11.1 (2017-09-29)"
#define Log_PLATFORM_VERSION "SWAD 17.11.2 (2017-09-29)"
#define CSS_FILE "swad17.0.css"
#define JS_FILE "swad16.206.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 17.11.2: Sep 29, 2017 Changes in layout of projects. (231511 lines)
Version 17.11.1: Sep 29, 2017 Code refactoring in projects. (231510 lines)
Version 17.11: Sep 29, 2017 Select which projects to show: only my projects or all projects. (231531 lines)
Version 17.10.7: Sep 29, 2017 Icons to select which projects to show: only my projects or all projects. (231456 lines)

View File

@ -2184,7 +2184,19 @@ static void Prj_PutFormProject (struct Project *Prj,bool ItsANewProject)
}
Prj_PutParams ();
/***** 1. Project data *****/
/***** 1. Project members *****/
if (!ItsANewProject) // Existing project
{
Box_StartBoxTable (NULL,Txt_Project_members,NULL,
NULL,Box_NOT_CLOSABLE,2);
for (RoleInProject = Prj_ROLE_STD;
RoleInProject <= Prj_ROLE_EVA;
RoleInProject++)
Prj_ShowOneProjectUsrs (Prj,Prj_EDIT_ONE_PROJECT,RoleInProject);
Box_EndBoxTable ();
}
/***** 2. Project data *****/
/* Start box and table */
Box_StartBoxTable (NULL,Txt_Project_data,NULL,
NULL,Box_NOT_CLOSABLE,2);
@ -2278,18 +2290,6 @@ static void Prj_PutFormProject (struct Project *Prj,bool ItsANewProject)
/* End form */
Act_FormEnd ();
/***** Project members *****/
if (!ItsANewProject) // Existing project
{
Box_StartBoxTable (NULL,Txt_Project_members,NULL,
NULL,Box_NOT_CLOSABLE,2);
for (RoleInProject = Prj_ROLE_STD;
RoleInProject <= Prj_ROLE_EVA;
RoleInProject++)
Prj_ShowOneProjectUsrs (Prj,Prj_EDIT_ONE_PROJECT,RoleInProject);
Box_EndBoxTable ();
}
/***** End box *****/
Box_EndBox ();
}