author_link.handlebars 715 B

1234567891011121314151617181920212223242526272829
  1. <a
  2. {{#with author}}
  3. {{#ifAll id course_id is_student}}
  4. data-student_id="{{id}}" data-course_id="{{course_id}}"
  5. class="author student_context_card_trigger"
  6. {{else}}
  7. class="author"
  8. {{/ifAll}}
  9. {{#if html_url}}
  10. href="{{html_url}}"
  11. data-bypass
  12. {{/if}}
  13. {{#if url}}
  14. href="{{url}}"
  15. {{/if}}
  16. title="{{#t "authors_name"}}Author's name{{/t}}"
  17. >{{display_name}}
  18. {{else}}
  19. class="author unknown"
  20. >{{#t "unknown_author"}}>Unknown Author{{/t}}
  21. {{/with}}
  22. {{#if author.isInactive}}
  23. <span class="label"
  24. title="{{#t}}This user is currently not able to access the course{{/t}}">
  25. {{#t}}inactive{{/t}}
  26. </span>
  27. {{/if}}
  28. </a>