1
0
Fork 0
satnogs-db/db/templates/base/faq.html

94 lines
3.3 KiB
HTML
Raw Normal View History

2015-07-02 05:39:27 -06:00
{% extends "base.html" %}
New SatNOGS DB user interface Initial commit of new UI. There is still some work to be done before this goes into dev, but here is the work so far: * Updated dependencies to latest 2.x django * Updated to Bootstrap 4 * New home screen to display most recent satellite entries, most recent data, and contributors * Adopted django-bootstrap-modal-forms for handling satellite and transmitter creation and update, with more of an emphasis on django's model/view/form model - and a dynamic flow where the modals and details are only loaded when the proper icon is clicked, reducing the overall page size * Adopted AdminLTE 3.x framework atop Bootstrap 4 * Created reusable cards for satellite and transmitters * Cards and Modals are organized into subdirectories for template includes and base templates, respectively * New stats display widgets using BS4 and AdminLTE 3 * Satellite search is redesigned and now accessible from any page of the site * Introduced datatables for an "All Satellites" view and a modification of the new "All Transmitters" view * Focus on all UI scaling down to mobile devices * New model created for Operator (/ Owner): name, names, description, website * Added django-countries for support of CountryField * Satellite model expanded to include: Operator, (satellite) website, countries, launched datetime, deployed datetime * Transmitter suggestions can now be approved in the UI by superusers * Satellite entries can now be edited in the UI by users with the change satellite permission * Satellite page is now broken into 'tabbed' panels (Profile, Map, Transmitters, etc) - with the tab menu options appearing in the sidebar or at the top depending on screen size * Other cleanup and changes that I'm missing for sure. Signed-off-by: Corey Shields <cshields@gmail.com>
2020-07-25 16:08:44 -06:00
{% load static %}
2015-07-02 05:39:27 -06:00
{% block title %} - FAQ{% endblock %}
{% block content %}
<div class="row text">
<div class="col-md-12">
<h1>FAQ</h1>
<h3>How do I suggest a new transmitter?</h3>
2015-07-02 05:39:27 -06:00
<ul class="faq">
<li>
First you need to identify the satellite which carries the transmitter.
2015-07-02 05:39:27 -06:00
Do that by searching on the main search field and selecting the satellite you would like
to add a new transmitter in.
2015-07-02 05:39:27 -06:00
<div><img src="{% static 'img/faq-1.jpg' %}"></div>
</li>
<li>
Make sure that the transmitter is not already listed under the satellite.
2015-07-02 05:39:27 -06:00
Double check for other Modes that might include the information you would like to add.
</li>
<li>
Click on the small plus icon on the upper right corner of the satellite.
<div><img src="{% static 'img/faq-2.jpg' %}"></div>
</li>
<li>
Complete the fields to the best of your knowledge/research.
</li>
<li>
Make sure to include the citation URL, pointing to the web page you retrieved this
information, so that the reviewers can confirm the submission.
</li>
<li>
Click submit and you are done!
</li>
<li>
SatNOGS DB reviewers will be checking your submission as soon as possible to approve it!
</li>
</ul>
<h3>How do I suggest an edit to a transmitter?</h3>
2015-07-02 05:39:27 -06:00
<ul class="faq">
<li>
First you need to identify the satellite which carries the transmitter.
2015-07-02 05:39:27 -06:00
</li>
<li>
Do that by searching on the main search field and selecting the satellite that
carries the transmitter you would like to edit.
2015-07-02 05:39:27 -06:00
<div><img src="{% static 'img/faq-1.jpg' %}"></div>
</li>
<li>
Double check for other Modes that might include the information you would like to add.
</li>
<li>
Click on the small plus icon on the upper right corner of the transmitter.
2015-07-02 05:39:27 -06:00
<div><img src="{% static 'img/faq-3.jpg' %}"></div>
</li>
<li>
Complete/Edit the fields to the best of your knowledge/research.
</li>
<li>
Make sure to include the citation URL, pointing to the web page you retrieved this information,
so that the reviewers can confirm the submission.
</li>
<li>
Click submit and you are done!
</li>
<li>
SatNOGS DB reviewers will be checking your submission as soon as possible to approve it!
</li>
</ul>
<h3>The satellite I am looking is not there.</h3>
<ul class="faq">
<li>
Not all satellites are in SatNOGS DB yet. We prioritized the most common ones that we have
transmitter information for. We need your help to expand our database!
</li>
<li>
Go to our <a href="https://community.libre.space/tags/db" target="_blank">Community Forum</a>
and open a new thread requesting a satellite addition, with additional info
(links and citations) about it.
</li>
<li>
A DB reviewer will answer promptly and add the satellite to the DB so you can suggest
transmitter information.
</li>
</ul>
2015-07-02 05:39:27 -06:00
</div>
</div>
{% endblock content %}