Newer
Older
GitBucket / src / main / twirl / gitbucket / core / pulls / commits.scala.html
@Naoki Takezoe Naoki Takezoe on 15 Aug 2015 1 KB Improve the pull request creation form
@(commits: Seq[Seq[gitbucket.core.util.JGitUtil.CommitInfo]],
  comments: Option[List[gitbucket.core.model.Comment]] = None,
  repository: gitbucket.core.service.RepositoryService.RepositoryInfo)(implicit context: gitbucket.core.controller.Context)
@import context._
@import gitbucket.core.view.helpers._
@import gitbucket.core.model._
<div class="box" style="margin-bottom: 20px;">
  @commits.map { day =>
    <div style="margin-top: 8px; margin-bottom: 8px;" class="muted">
      Commits on @date(day.head.commitTime)
    </div>
    <table style="width: 100%;">
      @day.map { commit =>
        <tr>
          <td style="width: 20%;">
            <i class="octicon octicon-git-commit"></i>
            @avatar(commit, 20)
            @user(commit.authorName, commit.authorEmailAddress, "username strong")
          </td>
          <td><span class="monospace">@commit.shortMessage</span></td>
          @*
          <span class="badge" style="display: inline">@if(comments.isDefined){
            @comments.get.flatMap @{
              case comment: CommitComment => Some(comment)
              case other => None
            }.count(t => t.commitId == commit.id && !t.pullRequest)
          }</span>
          *@
          <td style="width: 10%; text-align: right;">
            <a href="@url(repository)/commit/@commit.id" class="monospace">@commit.id.substring(0, 7)</a>
          </td>
        </tr>
      }
    </table>
  }
</div>