Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
NLMaps Web
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Simon Will
NLMaps Web
Commits
ef76d0a9
Commit
ef76d0a9
authored
4 years ago
by
Simon Will
Browse files
Options
Downloads
Patches
Plain Diff
Add FAQ
parent
9a2bd6c5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
nlmapsweb/templates/base.html
+1
-0
1 addition, 0 deletions
nlmapsweb/templates/base.html
nlmapsweb/templates/faq.html
+32
-0
32 additions, 0 deletions
nlmapsweb/templates/faq.html
nlmapsweb/views/faq.py
+6
-0
6 additions, 0 deletions
nlmapsweb/views/faq.py
with
39 additions
and
0 deletions
nlmapsweb/templates/base.html
+
1
−
0
View file @
ef76d0a9
...
...
@@ -74,6 +74,7 @@
{% if current_user.annotation_mode %}
<nav
class=
"top-nav"
id=
"annotation-nav"
>
<a
class=
"nav-element"
href=
"{{ url_for('annotation_progress') }}"
>
Progress
</a>
<a
class=
"nav-element"
href=
"{{ url_for('faq') }}"
>
FAQ
</a>
<span
class=
"nav-element"
>
✍ Annotator
</span>
</nav>
{% endif %}
...
...
This diff is collapsed.
Click to expand it.
nlmapsweb/templates/faq.html
0 → 100644
+
32
−
0
View file @
ef76d0a9
{% extends 'base.html' %}
{% set page = 'faq' %}
{% block content %}
<div
class=
"row block"
>
<div
class=
"block-header"
>
<span
class=
"block-title"
>
Frequently Asked Questions
</span>
</div>
<div
class=
"block-body"
>
<h3>
How do I activate annotation mode?
</h3>
<p>
First, register and log in. Then click on your name to reach your
profile and click on “Edit Profile”. Here you can activate the
annotation mode.
</p>
<h3>
How much do I need to vary my place and area names?
</h3>
<p>
Since it’s very difficult for a human to come up with lots of
different place names, you don’t need to focus on this. It’s alright if
you reuse your locations and I will diversify the reused ones
automatically.
</p>
<h3>
Is the order of the two locations important in queries of clas “Dist
Between”?
</h3>
<p>
Yes! Please put the location that is first in the NL query also as
the first location in the MRL query.
</p>
<h3>
The system misspells my locations!
</h3>
<p>
Yes, that happens sometimes, unfortunately. I hope it doesn’t occur
too often.
</p>
</div>
</div>
{% endblock %}
This diff is collapsed.
Click to expand it.
nlmapsweb/views/faq.py
0 → 100644
+
6
−
0
View file @
ef76d0a9
from
flask
import
current_app
,
render_template
@current_app.route
(
'
/faq
'
,
methods
=
[
'
GET
'
])
def
faq
():
return
render_template
(
'
faq.html
'
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment