aboutsummaryrefslogtreecommitdiffstats
path: root/templates/send.html
blob: 2a669e4bf84494c1b532c5bd634f9703332bbf1f (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
{% include "head.html" %}
<div class="">
  <h1>Send a frame</h1>
  <p>
  One main feature of CATS is that packets are constructed from Whiskers.
  Each Whisker represents one possible attribute of data.</p>
  <p>On this page you can select which whiskers to include in your packet.</p>

  <div>
    <h2>Identification</h2>
    <p>{{ conf.callsign }}-{{ conf.ssid }}</p>
    <h2>Destination Whisker</h2>
    <p>CATS packets can optionally have one or more destinations.
    This can be useful for e.g. sending a message to another amateur radio operator,
    or for communicating with a service.
    The destination consists of a UTF-8 callsign and an SSID byte.</p>
    <template id="destination_template">
      <p class="destination">
        <input class="textinput dest_callsign" type="text" placeholder="Type callsign here">
        <input class="textinput dest_ssid" type="text" placeholder="Type SSID here">
        <button class="btn" type="button" onclick="btn_remove_destination(this)">Remove</button>
      </p>
    </template>
    <div id="destinations"></div>
    <button class="btn" type="button" onclick="btn_add_destination()">Add destination</button>
    <h2>Comment Whisker</h2>
    <div>
      <input type="checkbox" id="with_comment" value="Include Comment" checked>
      <input class="textinput" type="text" id="whisker_comment" placeholder="Type comment here">
    </div>

    <button class="btn" type="button" onclick="btn_send_packet()">Send</button>
  </div>
</div>
{% include "foot.html" %}
{# vi:set et sw=2 ts=2: #}