blob: 8c15c64e2e4bc773b1e9e8f1a0072cf40afe4bb7 (
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
|
{% extends "index_page.html" %}
{% block css %}
<style>
.panel {
width: 90%;
margin: 2em;
}
</style>
{% endblock %}
{% block content %}
<section class="container">
<h1>{{ name }}</h1>
<div class="row">
<div class="panel-about panel panel-info text-muted">
<div class="panel-heading">
<strong>{{ section|capitalize }}</strong>
</div>
<div class="panel-body">
<form action="/metadata/save" method="POST">
<input name="name" type="hidden" value="{{ name }}"/>
<input name="id" type="hidden" value="{{ metadata.id }}"/>
<input name="section" type="hidden" value="{{ section }}"/>
<input name="type" type="hidden" value="{{ metadata.type }}"/>
<input name="label" type="hidden" value="{{ metadata.label }}"/>
{% if metadata.classifiedUnder %}
<input name="classified-under" type="hidden" value="{{ metadata.classifiedUnder.id }}"/>
{% endif %}
{% if metadata.accessionId %}
<input name="accession-id" type="hidden" value="{{ metadata.accessionId }}"/>
{% endif %}
<textarea name="editor" id="editor">
{{ edit|safe }}
</textarea>
<br/>
<label for="edit-summary">
Edit Summary (Briefly describe your changes)
</label>
<br/>
<textarea cols="80" name="edit-summary" rows="3" autocomplete="on" autocorrection="on" id="edit-summary"></textarea>
<br/>
<input type="submit" class="btn btn-primary" value="Publish changes" />
</form>
</div>
</div>
</div>
</section>
{% endblock %}
{% block js %}
<script language="javascript" type="text/javascript" src="{{ url_for('js', filename='ckeditor/ckeditor.js') }}"></script>
<script>
function isWysiwygareaAvailable() {
if ( CKEDITOR.revision == ( '%RE' + 'V%' ) ) {
return true;
}
return !!CKEDITOR.plugins.get( 'wysiwygarea' );
}
if ( CKEDITOR.env.ie && CKEDITOR.env.version < 9 )
CKEDITOR.tools.enableHtml5Elements( document );
CKEDITOR.config.height = 250;
CKEDITOR.config.width = 'auto';
let editorElement = CKEDITOR.document.getById( 'editor' );
let wysiwygareaAvailable = isWysiwygareaAvailable();
if ( wysiwygareaAvailable ) {
CKEDITOR.replace( 'editor' );
} else {
editorElement.setAttribute( 'contenteditable', 'true' );
CKEDITOR.inline( 'editor' );
}
</script>
{% endblock %}
|