{% if let Some(user_id) = comment.user_id %} {% if let Some(name) = comment.author %} {{ name }} {% else %} {{ comment.username.as_ref().unwrap() }} {% endif %} {% else %} {% if let Some(name) = comment.author %} {{ name }} {% else %} Anonymous {% endif %} {% endif %}

{{ comment.content }}