diff options
Diffstat (limited to 'templates/send.html')
-rw-r--r-- | templates/send.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/send.html b/templates/send.html index e287b18..2a669e4 100644 --- a/templates/send.html +++ b/templates/send.html @@ -1,8 +1,28 @@ {% 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> |