aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask/templates/admin/search_for_groups.html
blob: 0e1ec720b1dc0476edec370e9703b188af851f1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{% extends "base.html" %}
{% block title %}Resource Manager{% endblock %}
{% block css %}
    <link rel="stylesheet" type="text/css" href="{{ url_for('css', filename='DataTables/css/jquery.dataTables.css') }}" />
    <link rel="stylesheet" type="text/css" href="/static/new/css/show_trait.css" />
{% endblock %}
{% block content %}
<!-- Start of body -->
    <div class="container">
        <div class="page-header">
            <h1>Find Groups</h1>
        </div>
        <form id="add_group" action="/resources/add_group" method="POST">
            <input type="hidden" name="resource_id" value="{{ resource_id }}">
            <div style="min-width: 600px; max-width: 800px;">
                <fieldset>
                    <div class="form-horizontal" style="width: 900px;">
                        <div style="margin-bottom: 30px;">
                            <h2>Search by:</h2>
                        </div>
                        <div class="form-group" style="padding-left: 20px;">
                            <label for="group_name" class="col-xs-3" style="float: left; font-size: 18px;">Group ID:</label>
                            <div class="controls input-append col-xs-9" style="display: flex; padding-left: 20px; float: left;">
                                <input name="group_id" type="text" value="">
                            </div>
                        </div>
                        <div class="form-group" style="padding-left: 20px;">
                            <label for="group_name" class="col-xs-3" style="float: left; font-size: 18px;">Group Name:</label>
                            <div class="controls input-append col-xs-9" style="display: flex; padding-left: 20px; float: left;">
                                <input name="group_name" type="text" value="">
                            </div>
                        </div>
                        <div class="form-group" style="padding-left: 20px;">
                            <label for="user_name" class="col-xs-3" style="float: left; font-size: 18px;">User Name:</label>
                            <div class="controls input-append col-xs-9" style="display: flex; padding-left: 20px; float: left;">
                                <input name="user_name" type="text" value="">
                            </div>
                        </div>
                        <div class="form-group" style="padding-left: 20px;">
                            <label for="user_email" class="col-xs-3" style="float: left; font-size: 18px;">User E-mail:</label>
                            <div class="controls input-append col-xs-9" style="display: flex; padding-left: 20px; float: left;">
                                <input name="user_email" type="text" value="">
                            </div>
                        </div>
                        <div class="form-group" style="padding-left: 20px;">
                            <label class="col-xs-3" style="float: left; font-size: 18px;"></label>
                            <div class="controls input-append col-xs-9" style="display: flex; padding-left: 20px; float: left;">
                                <button type="button" id="find_groups" class="btn btn-primary">Search</button>
                                <button style="margin-left: 20px; display: none;" type="submit" id="submit_group" class="btn btn-success">Add Privileges for Selected Group</button>
                            </div>
                        </div>
                    </div>
                </fieldset>
                <hr>
                <div id="group_results">
                </div>
            </div>
        </form>
    </div>

<!-- End of body -->

{% endblock %}

{% block js %}
     <script language="javascript" type="text/javascript" src="{{ url_for('js', filename='DataTables/js/jquery.js') }}"></script>
    <script language="javascript" type="text/javascript" src="/static/new/javascript/group_manager.js"></script>
    <script language="javascript" type="text/javascript" src="{{ url_for('js', filename='DataTables/js/jquery.dataTables.min.js') }}"></script>

    <script type="text/javascript" charset="utf-8">

        $('#find_groups').click(function() {
            $.ajax({
                method: "POST",
                url: "/search_for_groups",
                data: {
                    group_id: $('input[name=group_id]').val(),
                    group_name: $('input[name=group_name]').val(),
                    user_name: $('input[name=user_name]').val(),
                    user_email: $('input[name=user_email]').val()
                },
                success: populate_groups
            });
        })

        populate_groups = function(json_group_list){
            console.log(json_group_list)
            var group_list = JSON.parse(json_group_list)

            var the_html = ""
            if (group_list.length > 0){
                the_html += "<table id='groups_table' style='padding-top: 10px; width: 100%;' class='table-hover table-striped cell-border'>";
                the_html += "<thead><tr><th></th><th>Index</th><th>Name</th><th># Admins</th><th># Members</th></tr></thead>";
                the_html += "<tbody>";
                for (_i = 0, _len = group_list.length; _i < _len; _i++) {
                    this_group = group_list[_i]
                    the_html += "<tr>";
                    the_html += "<td align='center' class='select_group'><input type='radio' name='selected_group' value='" + this_group.id + "'></td>";
                    the_html += "<td>" + (_i + 1).toString() + "</td>"
                    if ("name" in this_group) {
                        the_html += "<td>" + this_group.name + "</td>";
                    } else {
                        the_html += "<td>N/A</td>"
                    }
                    if ("admins" in this_group) {
                        the_html += "<td>" + this_group.admins.length + "</td>";
                    } else {
                        the_html += "<td>0</td>"
                    }
                    if ("members" in this_group) {
                        the_html += "<td>" + this_group.members.length + "</td>";
                    } else {
                        the_html += "<td>0</td>"
                    }
                    the_html += "</tr>"
                }
                the_html += "</tbody>";
                the_html += "</table>";
            } else {
                the_html = "<span>No groups were found matching the entered criteria.</span>"
            }

            $('#group_results').html(the_html)
            if (group_list.length > 0){
                $('#groups_table').dataTable({
                    'order': [[1, "asc" ]],
                    'sDom': 'tr'
                });
                $('input[name=selected_group]:eq(0)').prop("checked", true)
                $('#submit_group').css("display", "inline-block")
            }
        }
    </script>
{% endblock %}