You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

assigned.tmpl 742B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. .footer { font-size:small; color:#666;}
  6. </style>
  7. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  8. <title>{{.Subject}}</title>
  9. </head>
  10. {{$repo_url := printf "<a href='%s'>%s</a>" (Escape .Issue.Repo.HTMLURL) (Escape .Issue.Repo.FullName)}}
  11. {{$link := printf "<a href='%s'>#%d</a>" (Escape .Link) .Issue.Index}}
  12. <body>
  13. <p>
  14. {{if .IsPull}}
  15. {{.locale.Tr "mail.issue_assigned.pull" .Doer.Name $link $repo_url | Str2html}}
  16. {{else}}
  17. {{.locale.Tr "mail.issue_assigned.issue" .Doer.Name $link $repo_url | Str2html}}
  18. {{end}}
  19. </p>
  20. <div class="footer">
  21. <p>
  22. ---
  23. <br>
  24. <a href="{{.Link}}">{{.locale.Tr "mail.view_it_on" AppName}}</a>.
  25. </p>
  26. </div>
  27. </body>
  28. </html>