mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 20:19:21 +00:00
Add a notice when the user does not belong to any group.
This commit is contained in:
parent
4860ee6623
commit
6588b3d13a
@ -11,6 +11,11 @@
|
||||
padding-top: 50px;
|
||||
}
|
||||
|
||||
.groups-main-page .no-group-notice {
|
||||
margin-top: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.groups-main-page .group-item {
|
||||
text-align: justify;
|
||||
margin-top: 10px;
|
||||
|
@ -86,14 +86,25 @@ ComunicWeb.pages.groups.pages.main = {
|
||||
*/
|
||||
_display_list: function(target, list){
|
||||
|
||||
var has_group = false;
|
||||
|
||||
for (const i in list) {
|
||||
if (list.hasOwnProperty(i)) {
|
||||
const group = list[i];
|
||||
|
||||
has_group = true;
|
||||
ComunicWeb.pages.groups.pages.main._display_group(group, target);
|
||||
}
|
||||
}
|
||||
|
||||
//Check if the user does not belong to any groups
|
||||
if(!has_group){
|
||||
createElem2({
|
||||
appendTo: target,
|
||||
type: "div",
|
||||
class: "no-group-notice",
|
||||
innerHTML:"You do not belong to any group yet."
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user