File: index.html

package info (click to toggle)
qdjango 0.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 908 kB
  • ctags: 959
  • sloc: cpp: 8,233; python: 51; sh: 32; makefile: 13
file content (17 lines) | stat: -rw-r--r-- 413 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% include "header.html" %}
<div class="module">
    <table width="100%">
    <tbody>
{% for model in model_list %}
        <tr>
            <td><a href="{{ model }}/">{{ model }}</a></td>
            <td>
                <a href="{{ model }}/add/">Add</a>
                <a href="{{ model }}/">Change</a>
            </td>
        </tr>
{% endfor %}
    </tbody>
    </table>
</div>
{% include "footer.html" %}