[Feature Request] blanket comments

It would be cool to have a way to blanket comment a log for every QSO such as POTA - PARK#

1 Like

I would love to see something like this as well. I like to tag all my QSOs with applicable info like SES, POTA, SOTA, etc so that I can keep track of what certain logs were for. I actually just manually edited over 60 QSOs to include a comment for this reason and it was tedious.

I think the latest feature set includes comment templates…
Alan

1 Like

Correct. The March release has “Export Settings” (inside the Logging Settings screen) that let you define comments like these.

The defaults include the behavior you want, but for the ADIF QSL Message field. You can go on the settings and copy the template for that field into the one for regular Notes or Comments and add it along the current {{qso.notes}}

So you’d end up with something like
{{qso.notes}} {{#join op.refs separator=", " final=" & "}}{{or shortLabel label key}}{{/join}}

@KI2D Sebastian, can you please flesh out what this template is doing?

Is #join and /join delimiters?
and where is shortLabel being drawn from?

Alan

{{#join op.refs separator=", " final=" & "}}{{or shortLabel label key}}{{/join}}

So if op.refs is a list of objects, each one having attributes like shortLabel or ref or name…

{{#join op.refs}}{{shortLabel}}{{/join}} would produce a list of all the shortLabel attributes for each element in op.refs.

{{#join op.refs separator=", " final=" & "}}{{shortLabel}}{{/join}} would produce the same list, separated by commas and with a " & " for the last one.

And {{or shortLabel label key}} will resolve to shortLabel if that attribute is present, or label, or key, in that order.

And I guess we’ll have to document the common attributes for op.refs, since they are not on the notes right now.