summaryrefslogtreecommitdiff
path: root/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/data_review_table.html
blob: 7313197218db41b75d2c4b8dc6924b33b4e9f6b4 (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
{% load cache %}


<table id="data-review-table" style="width:auto">
<!-- <table> -->

	{% cache 3600 create_data_review_table_head request.LANGUAGE_CODE %}
	<thead>
		<tr>
			<th class="text-center right-border" colspan="5">Autogenerated</th>
			<th class="text-center right-border" colspan="5">Base</th>
			<th class="text-center right-border" colspan="7">Attribution</th>
			<th class="text-center right-border" colspan="2">LRMI</th>
			<th class="text-center right-border" colspan="3">Alignment & Level</th>
			<th class="text-center right-border" colspan="7">Curate</th>
			<th class="text-center right-border" colspan="3">Advance</th>
			{% if title == "moderation" %}
				<th class="text-center right-border" colspan="3">Moderation</th>
			{% endif %}
		</tr>
		<tr class="bottom-border">

			<!-- Autogenerated -->
			<th>Id</th>
			<th class="expand-width-3">Creation date</th>
			<th>Modified by</th>
			<th>Author</th>
			<th class="right-border">Contributors</th>

			<!-- Base -->
			<th class="expand-width-6">Name</th>
			<th class="expand-width-3">Altname</th>
			<th class="expand-width-6">content_org</th>
			<th class="expand-width-2">Language</th>
			<th class="expand-width-6 right-border">tags</th>

			<!-- Attribution -->
			<th class="expand-width-3">Created by</th>
			<th class="expand-width-3">Contributed by</th>
			<th class="expand-width-3">License</th>
			<th class="expand-width-3">Source</th>
			<th>Basenodeurl</th>
			<th>Translation of</th>
			<th class="right-border">Adaption of</th>

			<!-- LRMI -->
			<th class="expand-width-3">Educational use</th>
			<th class="right-border expand-width-2">Interactivity Type</th>

			<!-- Alignment and Level -->
			<th class="expand-width-1">Alignment</th>
			<th class="expand-width-8">Educational Level</th>
			<th class="right-border expand-width-3">Educational Subject</th>

			<!-- Curate -->
			<th class="expand-width-1">Curricular</th>
			<th class="expand-width-8">Audience</th>
			<th class="expand-width-2">Teaches</th>
			<th class="expand-width-2">Requires</th>
			<th class="expand-width-2">Featured</th>
			<th class="expand-width-3">Status</th>
			<th class="expand-width-3 right-border">Acess Policy</th>

			<!-- Advance -->
			<th class="expand-width-3">Reading Level</th>
			<th>Time Required</th>
			<th class="expand-width-3 right-border">Text Complexity</th>

			<!-- moderation -->
			{% if title == "moderation" %}
				<th class="expand-width-2">Discuss</th>
				<th class="expand-width-2">Approve</th>
				<th class="expand-width-3">Reject</th>
			{% endif %}

		</tr>

	</thead>
	{% endcache %}
	
	<tbody>
		<!-- Looping through each resource -->
		{% for resource in files %}
			{% include 'ndf/data_review_tbody.html' with resource=resource groupid=groupid %}
		{% endfor %}
	</tbody>
</table>