51 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "admin.html" %}
 | 
						|
 | 
						|
 | 
						|
{% block head2 %}
 | 
						|
<script src="/static/sorttable.js"></script>
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block admin %}
 | 
						|
<div class="scrollable">
 | 
						|
    <table class="sortable">
 | 
						|
 | 
						|
        <tr>
 | 
						|
            <th>
 | 
						|
                Kürzel
 | 
						|
            </th>
 | 
						|
            <th>
 | 
						|
                Ziellink
 | 
						|
            </th>
 | 
						|
            <th>
 | 
						|
                Benutzername
 | 
						|
            </th>
 | 
						|
            <th>
 | 
						|
                Statistik
 | 
						|
            </th>
 | 
						|
        </tr>
 | 
						|
        {% for links_user in links_per_users %}
 | 
						|
        {% set l = links_user[0] %}
 | 
						|
        {% set u = links_user[1] %}
 | 
						|
        {% set c = links_user[2] %}
 | 
						|
        <tr>
 | 
						|
            <td>
 | 
						|
                <a href="/admin/view/link/{{l.code}}"><span>{{l.code}}</span>
 | 
						|
                </a>
 | 
						|
            </td>
 | 
						|
            <td>
 | 
						|
                <a href="/admin/view/link/{{l.code}}">{{ l.target }}
 | 
						|
                </a>
 | 
						|
            </td>
 | 
						|
            <td>
 | 
						|
 | 
						|
                <a href="/admin/view/profile/{{u.id}}"><small>{{ u.username }}</small>
 | 
						|
                </a>
 | 
						|
            </td>
 | 
						|
            <td>
 | 
						|
                {{ c.count }}
 | 
						|
            </td>
 | 
						|
        </tr>
 | 
						|
        {% endfor %}
 | 
						|
    </table>
 | 
						|
</div>
 | 
						|
{% endblock %} |