File: index.html

package info (click to toggle)
qdjango 0.6.2-3.3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 908 kB
  • sloc: cpp: 7,818; sh: 32; makefile: 12; javascript: 1
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" %}