diff options
Diffstat (limited to 'templates/gititemsummary.qtpl')
-rw-r--r-- | templates/gititemsummary.qtpl | 24 |
1 files changed, 3 insertions, 21 deletions
diff --git a/templates/gititemsummary.qtpl b/templates/gititemsummary.qtpl index ef2c534..44e1604 100644 --- a/templates/gititemsummary.qtpl +++ b/templates/gititemsummary.qtpl @@ -1,9 +1,10 @@ {% import "github.com/go-git/go-git/v5/plumbing" %} {% import "github.com/go-git/go-git/v5/plumbing/object" %} +{% import "git.gabrielgio.me/cerrado/pkg/git" %} {% code type GitItemSummaryPage struct { - Tags []*plumbing.Reference + Tags []*git.TagReference Branches []*plumbing.Reference Commits []*object.Commit } @@ -14,26 +15,7 @@ type GitItemSummaryPage struct { {% func (g *GitItemSummaryPage) GitContent(name, ref string) %} <div class="row"> <div class="col-md-8"> - {% if len(g.Tags) > 0 %} - <div class="event-list"> - {% for _, t := range g.Tags %} - <div class="row event me-md-2"> - <div class="col-4"> - {%s t.Name().Short() %} - </div> - <div class="col-8"> - <div class="float-end"> - <a href="/{%s name %}/archive/{%s t.Name().Short() %}.tar.gz">tar.gz</a> - <a href="/{%s name %}/tree/{%s t.Name().Short() %}/">tree</a> - <a href="/{%s name %}/log/{%s t.Name().Short() %}/">log</a> - </div> - </div> - </div> - {% endfor %} - </div> - {% else %} - <p> No tags </p> - {% endif %} + {%= ListTags(name, g.Tags) %} </div> <div class="col-md-4"> <div class="event-list"> |