issue.template 753 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <h2>
  2. {{title}} <a style="font-size:small;color:gray;text-decoration:none;" href="#~{{user.name}}">{{user.name}}</a>
  3. </h2>
  4. <div style="font-size:large;">
  5. Description: {{description}}
  6. </div>
  7. <div>
  8. Priority: <span style="{{#if color}}color:{{color}};{{/if}}">{{priority}}</span>
  9. </div>
  10. <div>
  11. Status: {{status}}
  12. </div>
  13. <span style="font-size:small;">
  14. Comments
  15. </span>
  16. <ul>
  17. {{#each comments}}
  18. <li>
  19. <a style="font-size:small;color:gray;text-decoration:none;" href="#~{{name}}">
  20. {{name}}
  21. </a>
  22. <time style="font-size:smaller;" class="timeago">
  23. {{timestamp}}
  24. </time>
  25. <div>
  26. {{message}}
  27. </div>
  28. </li>
  29. {{/each}}
  30. </ul>
  31. <a class="comment">
  32. {
  33. "text": "comment",
  34. "id": {{id}},
  35. "type": "issue",
  36. "title": "Comment"
  37. }
  38. </a>