You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.6 KiB
45 lines
1.6 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Manage groups</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
|
<meta name="description" content="" />
|
|
<meta name="author" content="" />
|
|
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
|
|
<!-- Font Awesome icons (free version)-->
|
|
<script src="https://use.fontawesome.com/releases/v6.3.0/js/all.js" crossorigin="anonymous"></script>
|
|
<!-- Google fonts-->
|
|
<link href="https://fonts.googleapis.com/css?family=Varela+Round" rel="stylesheet" />
|
|
<link
|
|
href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i"
|
|
rel="stylesheet" />
|
|
<!-- Core theme CSS (includes Bootstrap)-->
|
|
<link href="css/styles.css" rel="stylesheet" />
|
|
</head>
|
|
<style>
|
|
section {
|
|
border: 2px solid black;
|
|
margin: 10px 0;
|
|
}
|
|
</style>
|
|
<body>
|
|
<section class="groupList">
|
|
<h2>Group list</h2>
|
|
{% include 'groupContainer.twig' with {'actions' : ['showGroupDetails', 'removeGroup']} %}
|
|
</section>
|
|
|
|
<section class="users">
|
|
<h2>Users of the group</h2>
|
|
{% include 'userContainer.twig' with {'users' : users, 'action' : 'removeUserFromGroup'} %}
|
|
</section>
|
|
<section class="addGroupForm">
|
|
<h2>Add group</h2>
|
|
{% include 'addGroupForm.twig' %}
|
|
</section>
|
|
<section class="unassignedUsers">
|
|
<h1>Unassigned users</h1>
|
|
{% include 'userContainer.twig' with {'users' : unassignedUsers, 'action' : 'addUserToGroup'} %}
|
|
</section>
|
|
</body>
|
|
</html> |