aboutsummaryrefslogtreecommitdiffstats
path: root/lib/srtgui/templates/export.html
blob: 8b2309ca7fb60223eb82b6dd69575852ad7f86b1 (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
{% extends "base.html" %}

{% load static %}
{% load projecttags %}
{% load humanize %}

{% block title %} Export Report {% endblock %}

{% block pagecontent %}
  <div class="row">
		<div class="col-md-7" style="padding-left: 50px;">
		  <h1>Export/Report: {{page}}</h1>
		</div>
  </div>

  <form>

	{% if request.user.is_creator %}
	    <hr>
		Report Type:<br>
		<select name="Report Type">
		<option value="staus">Overall Status</option>
		<option value="vulnerabilities">Open Vulnerabilities</option>
		<option value="investigations">Open Investigations</option>
		<option value="response">Response Time Status</option>
		</select>
	{% endif %}

<!--
    <hr>
    Title:<br>
    <input type="text" name="title">
    <br>
-->

    <hr>

	Record Range:<br>
	<input type="radio" name="records" value="Selected" checked> Selected<br>
	<input type="radio" name="records" value="All"> All<br>
	Column Range:<br>
	<input type="radio" name="columns" value="Selected" checked> Selected<br>
	<input type="radio" name="columns" value="All"> All<br>

    <hr>

    Export Format:<br>
	<input type="radio" name="format" value="Text" checked> Text<br>
	<input type="radio" name="format" value="RTF"> RTF<br>
	<input type="radio" name="format" value="CSV"> CSV<br>
	<input type="radio" name="format" value="XML"> XML<br>
	<input type="radio" name="format" value="JSON"> CVE NIST JSON<br>

    <hr>

	<a class="btn btn-info btn-lg" id="download-report" href="{% url 'tbd' %}">Generate and Download</a>

  </form>

{% endblock %}