27 lines
		
	
	
		
			681 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			681 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base_simple.html" %}
 | 
						|
{%load static %}
 | 
						|
{% get_static_prefix as STATIC_PREFIX %}
 | 
						|
 | 
						|
{% block title %}Vault{% endblock %}
 | 
						|
{% block sectiontitle %}Your Vault{% endblock %}
 | 
						|
 | 
						|
{% block extrahead %}
 | 
						|
<script type="text/javascript" language="javascript" src="{{STATIC_PREFIX}}/js/vault.js"></script>
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
<table class="inventory">
 | 
						|
  <tr>
 | 
						|
  {% for slot in vault %}
 | 
						|
    {% if slot.position|divisibleby:"9" %}
 | 
						|
      </tr>
 | 
						|
      <tr>
 | 
						|
    {% endif %}
 | 
						|
    <td data-id="{{slot.id}}" data-position="{{slot.position}}">
 | 
						|
      {% include 'common/item.html' with quantity=slot.quantity item=slot.item %}
 | 
						|
    </td>
 | 
						|
  {% endfor %}
 | 
						|
  </tr>
 | 
						|
</table>
 | 
						|
{% endblock %}
 |