agirstatool/src/org/april/agirstatool/core/pages/project.xhtml

68 lines
2.3 KiB
HTML
Raw Normal View History

2020-01-05 17:24:43 +01:00
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Agir Statool</title>
<meta charset="UTF-8" />
<meta content="April" name="keywords" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="agirstatool.css" />
<script src="/commons/sorttable.js" />
<script src="Chart.bundle.min.js"></script>
2020-01-05 17:24:43 +01:00
</head>
<body>
<div style="margin: 10px;">
2020-01-21 20:07:49 +01:00
<h1><a href="index.xhtml">Agir Statool</a> Project <a id="agirLink" href="#">n/a</a></h1>
<div id="issueCreatedClosed6MonthsChart" style="width: 49%; display: inline-block;">ISSUES CREATED/CLOSED 6 MONTHS CHART</div>
<div id="issueCreatedClosed3MonthsChart" style="width: 49%; display: inline-block;">ISSUES CREATED/CLOSED 3 MONTHS CHART</div>
2020-01-21 20:07:49 +01:00
<div id="issueCreatedClosedChart">ISSUES CREATED/CLOSED CHART</div>
2020-01-20 17:52:59 +01:00
<div style="margin: 4px;">
<span style="display: inline-block; padding-top: 6px; vertical-align: text-top;">Grouped</span>
<label class="switch">
<input type="checkbox" onclick="javascript:projectsViewFlip();" />
<span class="slider round"></span>
</label>
</div>
<div id="rawView">
<div>
<div id="issueRawChart" style="display: inline-block;">ISSUES BAR CHART</div>
<div id="unassignedRawChart" style="display: inline-block;"></div>
</div>
<br/>
2020-01-20 17:52:59 +01:00
<div>
<div id="projectsRawView">RAW VIEW PLACE</div>
</div>
</div>
2020-01-20 17:52:59 +01:00
<div id="groupedView" style="display: none;">
<div>
<div id="issueGroupedChart" style="display: inline-block;">ISSUES BAR CHART</div>
<div id="unassignedGroupedChart" style="display: inline-block;"></div>
</div>
<br/>
<div>
<div id="projectsGroupedView">GROUPED VIEW PLACE</div>
</div>
2020-01-05 17:24:43 +01:00
</div>
</div>
<script type="text/javascript">
var showRawView = true;
function projectsViewFlip ()
{
if (showRawView == true)
{
2020-01-20 17:52:59 +01:00
document.getElementById ('rawView').style.display = 'none';
document.getElementById ('groupedView').style.display = 'inline';
showRawView = false;
}
else
{
2020-01-20 17:52:59 +01:00
document.getElementById ('rawView').style.display = 'block';
document.getElementById ('groupedView').style.display = 'none';
showRawView = true;
}
}
</script>
2020-01-05 17:24:43 +01:00
</body>
</html>