35 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
@include(snippets/header)
 | 
						|
<h1 style="text-align: center">f0ckgle</h1>
 | 
						|
<form action="/search" class="admin-search">
 | 
						|
  <input type="text" name="tag" value="{!! searchstring || '' !!}" /><button type="submit"><b>f0ck</b></button>
 | 
						|
</form>
 | 
						|
<div class="results">
 | 
						|
  @if(result)
 | 
						|
  <h2>{{ count }} f0cks given (page {{ pagination.page }} of {{ pagination.end }}):</h2>
 | 
						|
  <table style="width: 100%" class="table">
 | 
						|
    <thead>
 | 
						|
      <tr>
 | 
						|
        <th>Thumbnail</th>
 | 
						|
        <th>ID</th>
 | 
						|
        <th>Tag</th>
 | 
						|
        <th>Mime</th>
 | 
						|
        <th>Username</th>
 | 
						|
        <th>Score</th>
 | 
						|
      </tr>
 | 
						|
    </thead>
 | 
						|
    <tbody>
 | 
						|
  @each(result as line)
 | 
						|
      <tr>
 | 
						|
        <td style="width: 128px;"><a href="/tag/{!! line.tag !!}/{{ line.id }}" target="_blank"><img src="/t/{{ line.id }}.webp" /></a></td>
 | 
						|
        <td><a href="/tag/{!! line.tag !!}/{{ line.id }}" target="_blank">{{ line.id }}</a></td>
 | 
						|
        <td><a href="/tag/{!! line.tag !!}">{!! line.tag !!}</a></td>
 | 
						|
        <td>{{ line.mime }}</td>
 | 
						|
        <td><a href="/user/{!! line.username !!}/f0cks/{{ line.id }}">{!! line.username !!}</a></td>
 | 
						|
        <td>{{ line.score?.toFixed(2) }}</td>
 | 
						|
      </tr>
 | 
						|
  @endeach
 | 
						|
    </tbody>
 | 
						|
  </table>
 | 
						|
  @endif
 | 
						|
</div>
 | 
						|
@include(snippets/footer) |