${label}
${present ? this.t('Present') : this.t('Absent')} ${renderFrameCaption(this.effectiveLang(), d.frame, this.translator)}${this.type === 'sadhesati' ? this.t('Current phase') : this.t('Type')}${d.type}
` : nothing } ${ d.severity ? html`` : nothing } ${ // The badge above states the verdict; this paragraph is the read of it. d.description && !this.hideReadings ? html`${d.description}
` : nothing } ${this.renderEffects(d)} ${ // Remedies and exceptions are prescriptive sentences laid out as bullets, // so each list goes with its own heading rather than leaving one behind. d.remedies && d.remedies.length > 0 && !this.hideReadings ? html`${this.t('Remedies')}
-
${d.remedies.map((r) => html`
- ${r} `)}
${this.t('Exceptions')}
-
${d.exceptions.map((r) => html`
- ${r} `)}