main_page.html
903 Bytes
{% extends "base.html" %}
{% load i18n %}
{% block extrahead %}
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/jquery.dataTables.min.css"/>
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/expressions.css"/>
<script type="text/javascript" src="{{ STATIC_URL }}js/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="{{ STATIC_URL }}js/expressions.js"></script>
{% endblock %}
{% block content %}
<div>
<table id="expressions" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>Hasło</th>
<th>Źródło</th>
<th>Dziedzina</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Hasło</th>
<th>Źródło</th>
<th>Dziedzina</th>
</tr>
</tfoot>
</table>
</div>
<br>
<div id="expressionInfo">
</div>
{% endblock %}