forked from creativecommons/ccos-website-source
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathissue_finder.html
More file actions
60 lines (56 loc) · 2 KB
/
issue_finder.html
File metadata and controls
60 lines (56 loc) · 2 KB
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 "layout.html" %}
{% block title %}{{ this.title }}{% endblock %}
{% block body %}
<header>
<h1>{{ this.title }}</h1>
<p> {{ this.description }}</p>
</header>
<div>
<div id="app">
<div>
<div class="columns">
<!-- Filters Section -->
<div class="column is-one-quarter">
<form id="filters">
<label for="aim">
<strong>Aim</strong><br />
I am interested in...
</label>
<select id="aim">
<option value="contribute">Contributing code</option>
<option value="triage">Triaging issues</option>
<option value="label">Labelling issues</option>
</select>
<br />
<div id="skill-filters">
<label for="skills">
<strong>Skill set*</strong><br />
Choose up to three skills.
</label>
<select id="skills">
<!-- Skills dynamically injected -->
</select>
<br />
<label for="experience">
<strong>Experience</strong><br />
Is this your first time contributing to CC?
</label>
<select id="experience">
<option value="beginner">Yes, it is</option>
<option value="experienced" selected>No, it isn’t</option>
</select>
</div>
<p>
*Not all issues have skills marked on them, especially if they are simple issues that do not require proficiency in any specific framework or language. Those issues will not appear when filtering by skill.
</p>
</form>
</div>
<!-- Issues Section -->
<div class="column" id="issues-container">
<p class="no-results">Loading issues...</p>
</div>
</div>
</div>
</div>
</div>
{% endblock %}