aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/templates/release_create.html
blob: ac8a81697b16a8f4f4e8c2ca3a960efeddf1c8a1 (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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
{% extends "base.html" %}
{% block body %}
<div class="ui segment">
<h1 class="ui header">Adding a New Thing</h1>

<form class="ui form" id="add_work_form">

  <h3 class="ui dividing header">The Basics</h3>

  <div class="ui huge field required">
    <label>Title</label>
    <input name="work_title" type="text" placeholder="Title of Work (in English)">
  </div>

  <div class="ui field required">
    <label>Type of Work</label>
    <select class="ui dropdown" id="work_type">
      <option value="">Primary Type</option>
      <option value="journal-article">Journal Article</option>
      <option value="book">Book</option>
      <option value="book-chapter">Book Chapter</option>
      <option value="dataset">Dataset</option>
      <option value="dissertation">Thesis or Dissertation</option>
      <option value="monograph">Monograph</option>
      <option value="proceedings-article">Conference Proceeding</option>
      <option value="report">Report</option>
      <option value="other">Other</option>
    </select>
  </div>

  <!-- Primary Creators/Authors -->
  <div class="ui field search" id="work_creators">
    <label>Primary Creator(s)</label>
    <div class="ui icon input">
      <input class="prompt" type="text" placeholder="Search...">
      <i class="search icon"></i>
    </div>
    <div class="results"></div>
  </div>

  <!-- Description (not an abstract) -->
  <div class="ui field">
    <label>Description</label>
    <div class="field">
      <label>Not an abstract...</label>
      <textarea rows="2"></textarea>
    </div>
  </div>

  <!-- Primary/Original Language -->
  <div class="field">
    <label>Primary Language</label>
    <select class="ui search select dropdown" id="language-select">
      <option value="">Select if Appropriate</option>
      <option value="en">English</option>
      <option value="es">Spanish</option>
    </select>
  </div>

  <!-- Subject / Categorization / Tags -->
  <div class="field">
    <label>Subject</label>
    <select multiple="" class="ui dropdown" id="subjects">
      <option value="">Select Subject/Tags</option>
      <option value="AF">Afghanistan</option>
      <option value="AX">Åland Islands</option>
      <option value="AL">Albania</option>
      <option value="DZ">Algeria</option>
      <option value="AS">American Samoa</option>
      <option value="AD">Andorra</option>
      <option value="AO">Angola</option>
    </select>
  </div>


  <h3 class="ui dividing header">Primary Release / Edition</h3>

  <!-- Contributors (and how) -->
  <div class="ui field search" id="release_creators">
    <label>Primary Creator(s)</label>
    <div class="ui icon input">
      <input class="prompt" type="text" placeholder="Search...">
      <i class="search icon"></i>
    </div>
    <div class="results"></div>
  </div>

  <!-- Date -->
  <!-- Container / Part-Of -->
  <!-- Publisher -->
  <!-- Identifier -->
  <!-- Language -->
  <!-- Type / Media -->
  <!-- Issue / Volume / Pages / Chapter -->

  <!-- Anything Else? -->
  <h3 class="ui dividing header">Anything Else?</h3>

  <!-- File / Copy / URL -->
  <!-- Citations -->

<div class="ui submit button">Create Work</div>
</form>

</div>
{% endblock %}

{% block postscript %}
<script>
<!-- Form validation code -->
$(document).ready(function() {

  $('#add_work_form')
    .form({
        fields: {
        name: {
            identifier: 'name',
            rules: [
            {
                type   : 'empty',
                prompt : 'Please enter your name'
            }
            ]
        },
        skills: {
            identifier: 'skills',
            rules: [
            {
                type   : 'minCount[2]',
                prompt : 'Please select at least two skills'
            }
            ]
        },
        gender: {
            identifier: 'gender',
            rules: [
            {
                type   : 'empty',
                prompt : 'Please select a gender'
            }
            ]
        },
        username: {
            identifier: 'username',
            rules: [
            {
                type   : 'empty',
                prompt : 'Please enter a username'
            }
            ]
        },
        password: {
            identifier: 'password',
            rules: [
            {
                type   : 'empty',
                prompt : 'Please enter a password'
            },
            {
                type   : 'minLength[6]',
                prompt : 'Your password must be at least {ruleValue} characters'
            }
            ]
        },
        terms: {
            identifier: 'terms',
            rules: [
            {
                type   : 'checked',
                prompt : 'You must agree to the terms and conditions'
            }
            ]
        }
        }
    })
    ;

  var example_authors = [
    { title: 'Andorra' },
    { title: 'United Arab Emirates' },
    { title: 'Afghanistan' },
    { title: 'Antigua' },
    { title: 'Anguilla' },
    { title: 'Albania' },
    { title: 'Armenia' },
    { title: 'Netherlands Antilles' },
    { title: 'Angola' },
    { title: 'Argentina' },
    { title: 'American Samoa' },
    { title: 'Austria' },
    { title: 'Australia' },
    { title: 'Aruba' },
  ];

  $('#work_creators')
    .search({
        source: example_authors
    })
  ;

  $('#release_creators')
    .search({
        source: example_authors
    })
  ;

  $('#work_type').dropdown();
  $('#subjects').dropdown();
  $('#language-select').dropdown();

  console.log("Page loaded");

});
</script>
{% endblock %}