main_page.html 911 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>Wyrażenie</th>
            <th>Źródło</th>
            <th>Kategoria</th>
        </tr>
    </thead>
    <tfoot>
        <tr>
            <th>Wyrażenie</th>
            <th>Źródło</th>
            <th>Kategoria</th>
        </tr>
    </tfoot>
    </table>
</div>
<br>
<div id="expressionInfo">
</div>
{% endblock %}