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

61 lines
2.2 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-20 17:46:54 +01:00
<h1><a href="index.xhtml">Agir Statool</a> <a id="agirLink" href="#">Project <span id="projectName">n/a</span></a></h1>
<div>
<div id="issueRawChart" style="display: inline-block;">ISSUES BAR CHART</div>
<div id="issueGroupedChart" style="display: inline-block;">ISSUES BAR CHART</div>
2020-01-20 17:46:54 +01:00
<div id="unassignedRawChart" style="display: inline-block;"></div>
<div id="unassignedGroupedChart" style="display: inline-block;"></div>
<br/>
<div id="issueRawChartAlone" style="display: inline-block;"></div>
<div id="issueGroupedChartAlone" style="display: inline-block;"></div>
2020-01-20 17:46:54 +01:00
<div id="unassignedRawChartAlone" style="display: inline-block;"></div>
<div id="unassignedGroupedChartAlone" style="display: inline-block;"></div>
</div>
<br/>
2020-01-05 17:24:43 +01:00
<div>
<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="projectsRawView">RAW VIEW PLACE</div>
<div id="projectsGroupedView" style="display: none;" >GROUPED VIEW PLACE</div>
2020-01-05 17:24:43 +01:00
</div>
</div>
<script type="text/javascript">
var showRawView = true;
function projectsViewFlip ()
{
if (showRawView == true)
{
document.getElementById ('projectsRawView').style.display = 'none';
document.getElementById ('projectsGroupedView').style.display = 'inline';
showRawView = false;
}
else
{
document.getElementById ('projectsRawView').style.display = 'block';
document.getElementById ('projectsGroupedView').style.display = 'none';
showRawView = true;
}
}
</script>
2020-01-05 17:24:43 +01:00
</body>
</html>