about summary refs log tree commit diff
path: root/views/task/index.tt
blob: faf49cfa074ac8fafdc69e67ebe37c2a8a2169ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<div id="page">
  <div id="content">
    <h2>Task <: $task.id :></h2>
    <div class="commit" id="<: $task.id :>">
      <div class="description">
        <div class="message"><pre><: $commit.message :></pre></div>
        <div class="name">
          <div class="gravatar">
            <img src="http://www.gravatar.com/avatar/<: $commit.avatar :>?s=30" />
          </div>
          <div class="author"><: $commit.author.name :></div>
          <div class="date">pushed on <: $commit.timestamp :></div>
        </div>
        <div style="clear:both;"></div>
      </div>
      <div class="git">
        commit&nbsp;&nbsp;&nbsp;<a href="<: $commit.url :>"><: $commit.id :></a><br />
        <: if $commit.ref { :>
          on&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<: $commit.ref :>
        <: } :>
        <br />
        <: if $task.started_when { :>
          started <: $task.started_when :>
        <: } :>
        <br />
      </div>
    </div>
  </div>
</div>