summaryrefslogtreecommitdiffstats
path: root/sonar-server/src/main/hbs/issues/change-log.hbs
blob: 256414e8222575f8bd626c1fcb2898af3d7c54ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<table class="spaced">
  <tbody>
  <tr>
    <td class="thin left top" nowrap>{{dt issue.creationDate}}</td>
    <td class="thin left top" nowrap></td>
    <td class="left top">{{t 'created'}}</td>
  </tr>
  {{#each items}}
    <tr>
      <td class="thin left top" nowrap>{{dt creationDate}}</td>
      <td class="thin left top" nowrap>{{userName}}</td>
      <td class="left top">
        {{#each diffs}}
          {{changelog this}}<br>
        {{/each}}
      </td>
    </tr>
  {{/each}}
  </tbody>
</table>