You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							48 lines
						
					
					
						
							1.9 KiB
						
					
					
				
			
		
		
	
	
							48 lines
						
					
					
						
							1.9 KiB
						
					
					
				{{template "base/head" .}}
 | 
						|
{{template "base/navbar" .}}
 | 
						|
<div id="body" class="container" data-page="admin">
 | 
						|
    {{template "admin/nav" .}}
 | 
						|
    <div id="admin-container" class="col-md-10">
 | 
						|
        <div class="panel panel-default">
 | 
						|
            <div class="panel-heading">
 | 
						|
                Repository Management
 | 
						|
            </div>
 | 
						|
 | 
						|
            <div class="panel-body">
 | 
						|
                <table class="table table-striped">
 | 
						|
                    <thead>
 | 
						|
                        <tr>
 | 
						|
                            <th>Id</th>
 | 
						|
                            <th>Owner</th>
 | 
						|
                            <th>Name</th>
 | 
						|
                            <th>Private</th>
 | 
						|
                            <th>Watches</th>
 | 
						|
                            <th>Issues</th>
 | 
						|
                            <th>Forks</th>
 | 
						|
                            <th>Created</th>
 | 
						|
                        </tr>
 | 
						|
                    </thead>
 | 
						|
                    <tbody>
 | 
						|
                        {{range .Repos}}
 | 
						|
                        <tr>
 | 
						|
                            <td>{{.Id}}</td>
 | 
						|
                            <th>{{.Owner.Name}}</th>
 | 
						|
                            <td><a href="/{{.Owner.Name}}/{{.Name}}">{{.Name}}</a></td>
 | 
						|
                            <td><i class="fa fa{{if .IsPrivate}}-check{{end}}-square-o"></i></td>
 | 
						|
                            <td>{{.NumWatches}}</td>
 | 
						|
                            <td>{{.NumIssues}}</td>
 | 
						|
                            <td>{{.NumForks}}</td>
 | 
						|
                            <td>{{DateFormat .Created "M d, Y"}}</td>
 | 
						|
                        </tr>
 | 
						|
                        {{end}}
 | 
						|
                    </tbody>
 | 
						|
                </table>
 | 
						|
                <ul class="pagination">
 | 
						|
                    {{if .LastPageNum}}<li><a href="/admin/repos?p={{.LastPageNum}}">« Prev.</a></li>{{end}}
 | 
						|
                    {{if .NextPageNum}}<li><a href="/admin/repos?p={{.NextPageNum}}">» Next</a></li>{{end}}
 | 
						|
                </ul>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
{{template "base/footer" .}} |