35 lines
		
	
	
		
			870 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			870 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base.html" %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
<div class="p-2">
 | 
						|
 | 
						|
  <p>This tool has been used to save {{ edits.count() }} edits.</p>
 | 
						|
 | 
						|
  <table class="table w-auto">
 | 
						|
    <thead>
 | 
						|
      <tr>
 | 
						|
        <th>username</th>
 | 
						|
        <th>painting</th>
 | 
						|
        <th>depicts</th>
 | 
						|
        <th>when</th>
 | 
						|
      </tr>
 | 
						|
    </thead>
 | 
						|
    <tbody>
 | 
						|
    {% for edit in edit_list %}
 | 
						|
    <tr>
 | 
						|
      <td><a href="{{ edit.user_page_url }}">{{ edit.username }}</a></td>
 | 
						|
      <td><a href="https://www.wikidata.org/wiki/{{ edit.painting_qid }}">{{ edit.painting.label }}</a>
 | 
						|
          ({{ edit.painting_qid }})</td>
 | 
						|
      <td><a href="https://www.wikidata.org/wiki/{{ edit.depicts_qid }}">{{ edit.depicts.label }}</a>
 | 
						|
          ({{ edit.depicts_qid }})</td>
 | 
						|
      <td>{{ edit.timestamp.strftime('%H:%M %a, %d %b %Y') }}</td>
 | 
						|
    </tr>
 | 
						|
    {% endfor %}
 | 
						|
    </tbody>
 | 
						|
  </table>
 | 
						|
 | 
						|
 | 
						|
</div>
 | 
						|
 | 
						|
{% endblock %}
 |