mirror of https://github.com/MISP/misp-dashboard
375 lines
20 KiB
HTML
375 lines
20 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
|
|
<title>MISP live dashboard</title>
|
|
|
|
<!-- Bootstrap Core CSS -->
|
|
<link href="{{ url_for('static', filename='css/bootstrap.min.css') }}" rel="stylesheet">
|
|
<!-- Custom CSS -->
|
|
<link href="{{ url_for('static', filename='css/sb-admin-2.css') }}" rel="stylesheet">
|
|
<!-- LeafLet -->
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/leaflet.css') }}">
|
|
<script src="{{ url_for('static', filename='js/leaflet.js') }}"></script>
|
|
|
|
<!-- jQuery -->
|
|
<script src="{{ url_for('static', filename='js/jquery.min.js') }}"></script>
|
|
<!-- jQuery flot -->
|
|
<script src="{{ url_for('static', filename='js/jquery.flot.js') }}"></script>
|
|
<script src="{{ url_for('static', filename='js/jquery.flot.pie.min.js') }}"></script>
|
|
<script src="{{ url_for('static', filename='js/jquery.flot.resize.js') }}"></script>
|
|
<!-- Bootstrap Core JavaScript -->
|
|
<script src="{{ url_for('static', filename='js/bootstrap.js') }}"></script>
|
|
<script src="{{ url_for('static', filename='js/bootstrap3-typeahead.min.js') }}"></script>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/font-awesome.min.css') }}" rel="text/css">
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/jquery-jvectormap-2.0.3.css') }}" type="text/css" media="screen"/>
|
|
<script src="{{ url_for('static', filename='js/jquery-jvectormap-2.0.3.min.js') }}"></script>
|
|
<script src="{{ url_for('static', filename='js/jquery-jvectormap-world-mill.js') }}"></script>
|
|
<link href="{{ url_for('static', filename='css/jquery-ui.min.css') }}" rel="stylesheet" type="text/css" />
|
|
<link href="{{ url_for('static', filename='css/dataTables.bootstrap.css') }}" rel="stylesheet" type="text/css" />
|
|
<script src="{{ url_for('static', filename='js/jquery.dataTables.min.js') }}"></script>
|
|
<script src="{{ url_for('static', filename='js/dataTables.bootstrap.js') }}"></script>
|
|
|
|
|
|
<script src="{{ url_for('static', filename='js/jquery-ui.min.js') }}"></script>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/ranking.css') }}">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<!-- Modal -->
|
|
<div id="myModal" class="modal fade" role="dialog">
|
|
<div class="modal-dialog modal-lg" style="width: 1500px;">
|
|
|
|
<!-- Modal content-->
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal">×</button>
|
|
<h4 class="modal-title">Organisation ranking</h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="row">
|
|
<div class="col-lg-4">
|
|
<h4>Monthly rank generation:</h4>
|
|
<p>Monthly ranks are generated by the formula: <pre>Rank = floor(Log(<it>points</it>, {{ rankMultiplier }}))</pre></p>
|
|
<ul>
|
|
{% for text in additional_help_text %}
|
|
<li>{{ text }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<h4>Points awarded by category:</h4>
|
|
<div class="table-responsive">
|
|
<table class="table table-striped table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>Category</th>
|
|
<th>Point(s) awarded</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for categ in categ_list_str %}
|
|
<tr>
|
|
<td>{{ categ }}</td>
|
|
<td>{{ categ_list_points[loop.index0] }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-8">
|
|
<h4>Global organisation ranking:</h4>
|
|
<div class="table-responsive">
|
|
<table class="table table-striped table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>Org. rank</th>
|
|
<th>Title</th>
|
|
<th>Points requirement</th>
|
|
<th>Contribution requirement</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for item in org_rank_list %}
|
|
<tr>
|
|
<td style='padding: 0px; text-align: right;'><img height='35px' width='70px' style="margin-right: 20px;" src="{{ url_for('static', filename='pics/rankingMISPOrg/1.svg')[:-5]}}{{ item[0] }}.svg" type='image/svg' style="margin: auto;"</img></td>
|
|
<td>{{ item[1] }}</td>
|
|
<td>{{ item[2] }}</td>
|
|
<td>{{ item[3] }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="col-lg-6">
|
|
<ul>
|
|
{% for text in org_rank_additional_text %}
|
|
<li>{{ text }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
<div class="col-lg-6">
|
|
<table>
|
|
<tbody>
|
|
{% for item in org_honor_badge_title_list %}
|
|
<tr style="height: 85px">
|
|
<td>
|
|
<div class="circleBadge">
|
|
<img height='64px' width='64px' style="margin-top: 5px;" src="{{ url_for('static', filename='pics/MISPHonorableIcons/1.svg')[:-5]}}{{ item[0] }}.svg" type='image/svg' style="margin: auto;"</img>
|
|
</div>
|
|
</td>
|
|
<td style="padding-left: 10px;">{{ item[1] }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div id="wrapper">
|
|
|
|
<!-- Navigation -->
|
|
<nav class="navbar navbar-default navbar-static-top" role="navigation" style="margin-bottom: 0; padding-left: 15px;">
|
|
<div class="navbar-header">
|
|
<img src="{{ url_for('static', filename='pics/MISP.png') }}" alt="MISP" style="float: left; height: 40px; margin-top: 5px;"><a class="navbar-brand dropdown-toggle" data-toggle="dropdown" href="#">MISP Contributors
|
|
<span class="caret"></span></a>
|
|
<ul class="dropdown-menu">
|
|
<li><a href="{{ url_for('index') }}">MISP Live Dashboard</a></li>
|
|
<li><a href="{{ url_for('geo') }}">MISP Geolocalisation</a></li>
|
|
<li><a href="{{ url_for('contrib') }}">MISP Contributors</a></li>
|
|
</ul>
|
|
<div id="ledsHolder" style="float: left; height: 50px;">
|
|
<div class='leftSepa textTopHeader'>
|
|
<label class="checkbox-inline" style="font-weight: bold; position: relative; top: -30%; left:10%">
|
|
<input id="reloadCheckbox" type="checkbox" style="top: -2px;" checked>Auto reload
|
|
</label>
|
|
<label id='labelRemainingTime' style="font-weight: bold; font-size: medium; position: relative; left: -38%; bottom: -30%; color: #f0ad4e;"></label>
|
|
</div>
|
|
</div>
|
|
<div id="ledsHolder" style="float: right; height: 50px;">
|
|
<div class='leftSepa textTopHeader'>
|
|
<strong>Organisation name:</strong>
|
|
</div>
|
|
<div class='textTopHeader' style="padding-top: 9px;">
|
|
<input type="text" id="orgName" data-provide="typeahead" size="20" style="margin-bottom: 5px;">
|
|
</div>
|
|
<button type="button" class="questionBadgeDiv" data-toggle="modal" data-target="#myModal"><i class="fa fa-question-circle questionBadgeText"></i></button>
|
|
<button id="btnCurrRank" class='btn btn-default popOverBtn' data-container='body' data-toggle='popover' style="display: none; margin-left: 20px;" onclick="showOnlyOrg()">
|
|
<strong id="orgText" class="centerInBtn"></strong>
|
|
<div id="orgRankDiv" class='textTopHeader' style="padding-top: 0px; position: relative; width: 40px; height: 40px;"></div>
|
|
<div class='' style="float: left; padding: 10px;">
|
|
<div class="progress" style=''>
|
|
<div id="progressBarDiv" class="progress-bar progress-bar-striped" role="progressbar" style="width:0%">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="orgNextRankDiv" class='textTopHeader' style="padding-top: 0px; position: relative; width: 40px; height: 40px;"></div>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<!-- /.navbar-header -->
|
|
</nav>
|
|
|
|
<!-- Page Content -->
|
|
<div id="page-wrapper" style="margin: 0px; padding: 0px;">
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div style="height: 10px;"></div>
|
|
<div class="col-lg-8">
|
|
|
|
<div class="col-lg-6">
|
|
<div class="panel panel-default" style="height: 100%;">
|
|
<div class="panel-heading bg-info" style="font-weight: bold;">
|
|
<i class="fa fa-asterisk " style="margin-right: 5px; color: #f0ad4e;"></i><b>Contributor Ranking</b>
|
|
</div>
|
|
<div id="panelRanking" class="panel-body" style="height: 100%;">
|
|
|
|
<div class="table-responsive">
|
|
<table id="topContribTable" class="table table-hover table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Points</th>
|
|
<th>Cur. rank</th>
|
|
<th>Org. rank</th>
|
|
<th></th>
|
|
<th></th>
|
|
<th>Organisation</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</div>
|
|
<!-- /.panel-body -->
|
|
</div><!-- /.panel -->
|
|
</div>
|
|
|
|
<div class="col-lg-6">
|
|
<div class="panel panel-default" style="height: 100%;">
|
|
<div class="panel-heading bg-info" style="font-weight: bold;">
|
|
<i class="glyphicon glyphicon-fire " style="margin-right: 5px; color: #d9534f;"></i><b>Last contributors</b>
|
|
</div>
|
|
<div id="panellast" class="panel-body" style="height: 100%;">
|
|
|
|
<div class="table-responsive">
|
|
<table id="lastTable" class="table table-hover table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Points</th>
|
|
<th>Cur. rank</th>
|
|
<th>Org. rank</th>
|
|
<th></th>
|
|
<th></th>
|
|
<th>Organisation</th>
|
|
<th>epoch</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<!-- /.panel-body -->
|
|
</div><!-- /.panel -->
|
|
</div>
|
|
|
|
<div class="col-lg-12">
|
|
<div class="panel panel-default" style="height: 100%;">
|
|
<div class="panel-heading bg-info" style="font-weight: bold;">
|
|
<i class="fa fa-th-list " style="margin-right: 5px; color: #f0ad4e;"></i><b>Contributors and Categories</b>
|
|
</div>
|
|
<div id="panelRanking" class="panel-body" style="height: 100%;">
|
|
|
|
<div class="table-responsive">
|
|
<table id="categTable" class="table table-hover table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Points</th>
|
|
<th>Cur. rank</th>
|
|
<th>Org. rank</th>
|
|
<th></th>
|
|
<th></th>
|
|
<th>Organisation</th>
|
|
{% for categ in categ_list_str %}
|
|
<th>{{ categ }}</th>
|
|
{% endfor %}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</div>
|
|
<!-- /.panel-body -->
|
|
</div><!-- /.panel -->
|
|
</div>
|
|
|
|
|
|
</div><!-- /.col-lg-8 -->
|
|
|
|
|
|
<div class="col-lg-4">
|
|
|
|
<div class="panel panel-default" style="height: 100%;">
|
|
<div class="panel-heading bg-info" style="font-weight: bold;">
|
|
<i class="fa fa-star" style="margin-right: 5px; color: #f0ad4e;"></i><b>Hall Of Fame</b>
|
|
</div>
|
|
<div id="panelRanking" class="panel-body" style="height: 100%;">
|
|
|
|
<div class="table-responsive">
|
|
<table id="fameTable" class="table table-hover table-striped" style="margin-bottom: 0px;">
|
|
<thead>
|
|
<tr>
|
|
<th>Points</th>
|
|
<th>Prev. rank</th>
|
|
<th>Org. rank</th>
|
|
<th></th>
|
|
<th></th>
|
|
<th>Organisation</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id=fameTableBody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</div>
|
|
<!-- /.panel-body -->
|
|
</div><!-- /.panel -->
|
|
|
|
<div class="panel panel-default" style="height: 100%;">
|
|
<div class="panel-heading bg-info" style="font-weight: bold;">
|
|
<i class="fa fa-line-chart" style="margin-right: 5px; color: #f0ad4e;"></i><b>Top 5 Contributor overtime</b>
|
|
</div>
|
|
<div id="panelRanking" class="panel-body" style="height: 100%;">
|
|
<div id="divTop5Overtime" style="height: 32vh"></div>
|
|
</div>
|
|
<!-- /.panel-body -->
|
|
|
|
</div><!-- /.panel -->
|
|
|
|
</div><!-- /.col-lg-4 -->
|
|
|
|
</div><!-- /.col-lg-12 -->
|
|
</div><!-- /.row -->
|
|
|
|
</div> <!-- /.container-fluid -->
|
|
|
|
</div>
|
|
<!-- /#page-wrapper -->
|
|
|
|
</div>
|
|
<!-- /#wrapper -->
|
|
<!-- Index -->
|
|
<script>
|
|
/* URL */
|
|
var url_getTopContributor = "{{ url_for('getTopContributor') }}";
|
|
var url_getFameContributor = "{{ url_for('getFameContributor') }}";
|
|
var url_getCategPerContrib = "{{ url_for('getCategPerContrib') }}";
|
|
var url_getTop5Overtime = "{{ url_for('getTop5Overtime') }}";
|
|
var url_getLastContributor = "{{ url_for('getLastContributors') }}";
|
|
var url_eventStreamLastContributor = "{{ url_for('getLastContributor') }}";
|
|
var url_getAllOrg = "{{ url_for('getAllOrg') }}";
|
|
var url_getOrgRank = "{{ url_for('getOrgRank') }}";
|
|
var url_baseRankMonthlyLogo = "{{ url_for('static', filename='pics/rankingMISPMonthly/1.svg') }}";
|
|
url_baseRankMonthlyLogo = url_baseRankMonthlyLogo.substring(0, url_baseRankMonthlyLogo.length-5);
|
|
var url_baseOrgRankLogo = "{{ url_for('static', filename='pics/rankingMISPOrg/1.svg') }}";
|
|
url_baseOrgRankLogo = url_baseOrgRankLogo.substring(0, url_baseOrgRankLogo.length-5);
|
|
var url_baseHonorLogo = "{{ url_for('static', filename='pics/MISPHonorableIcons/1.svg') }}";
|
|
url_baseHonorLogo = url_baseHonorLogo.substring(0, url_baseHonorLogo.length-5);
|
|
|
|
/* DATA FROM CONF */
|
|
var currOrg = "{{ currOrg }}";
|
|
var min_between_reload = {{ min_between_reload }};
|
|
var rankMultiplier = {{ rankMultiplier }};
|
|
var categ_list = JSON.parse('{{ categ_list|safe }}');
|
|
var org_rank_obj = JSON.parse('{{ org_rank_json|safe }}');
|
|
var org_honor_badge_title = JSON.parse('{{ org_honor_badge_title|safe }}');
|
|
|
|
</script>
|
|
<script src="{{ url_for('static', filename='js/contrib.js') }}"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|