all repos

mugit @ 4d1cef116b5530c0d5f1b898c885472d262f6330

馃惍 git server that your cow will love
1 files changed, 7 insertions(+), 3 deletions(-)
ui: show hash on log page
Author: Oleksandr Smirnov olexsmir@gmail.com
Committed at: 2026-01-28 21:20:46 +0200
Authored at: 2026-01-28 21:20:31 +0200
Change ID: mkymlowyxrqpkvsvkwntxnkrpqsqyyyw
Parent: 939e369
M web/templates/repo_log.html
路路路
        12
        12
               <table class="log">

      
        13
        13
                 <thead>

      
        14
        14
                   <tr class="nohover">

      
        15
        
        -            <th class="msg">commit</th>

      
        16
        
        -            <th class="author">author</th>

      
        17
        
        -            <th class="age">age</th>

      
        
        15
        +            <th class="msg">Message</th>

      
        
        16
        +            <th class="author">Author</th>

      
        
        17
        +            <th class="hash">Hash</th>

      
        
        18
        +            <th class="age">Age</th>

      
        18
        19
                   </tr>

      
        19
        20
                 </thead>

      
        20
        21
                 <tbody>

      路路路
        31
        32
                         <strong>{{ .Author.Name }}</strong><br>

      
        32
        33
                         <a href="mailto:{{ .Author.Email }}" class="commit-email">{{ .Author.Email }}</a>

      
        33
        34
                       </span>

      
        
        35
        +            </td>

      
        
        36
        +            <td class="">

      
        
        37
        +              <a href="/{{ $repo }}/commit/{{ .Hash.String }}">{{ slice .Hash.String 0 8 }}</a>

      
        34
        38
                     </td>

      
        35
        39
                     <td class="age">

      
        36
        40
                       <span class="age-display">{{ humanizeTime .Committer.When }}</span>