Ik probeer dit gebruikersveld: user-fields/5 toe te voegen aan deze outlet: above-user-summary-stats. Maar het laadt niet, hier is de hbs die ik probeer te gebruiken:
{{!-- Afficheer en bewerk een aangepast gebruikersveld (bijv. "profielnotitie") voor user_field_5 --}}
{{#if this.fieldValue}}
<div>
<strong>Profielnotitie:</strong> {{this.fieldValue}}
</div>
{{else}}
{{#if this.canEdit}}
<div class="profile-note-display empty">
<em>Geen profielnotitie ingesteld</em>
</div>
{{/if}}
{{/if}}
{{#if this.canEdit}}
{{#unless this.editing}}
<button class="btn btn-primary btn-small" {{on "click" this.startEdit}}>
{{#if this.fieldValue}}Bewerken{{else}}Toevoegen{{/if}} Profielnotitie
</button>
{{/unless}}
{{/if}}
{{#if this.editing}}
<form {{on "submit" this.save}}>
<textarea
rows="4"
style="width:100%;"
value={{this.editValue}}
{{on "input" this.updateEdit}}
autofocus
></textarea>
<br>
<button type="submit" class="btn btn-primary btn-small">Opslaan</button>
<button type="button" class="btn btn-conditional btn-small" {{on "click" this.cancelEdit}}>Annuleren</button>
</form>
{{/if}}
Wat kan het mogelijke probleem zijn?