てはじめに

CodeHighlightが上手くいくかをためしつつ、
はじめての投稿を行います。

<!DOCTYPE html>
<html land="ja">
<head>
    <meta charset="utf-8">
    <title>list</title>
</head>
<body>
    <form action="/detail/" method="post">
        <input type="submit" value="追加">
    </form>
    <hr/>
    <table border="1">
        <tr>
            <th>ID</th>
            <th>Name</th>
            <th>Version</th>
            <th>Updated</th>
        </tr>
        {% for item in items %}
        <tr>
            <th>{{ item.key }}</th>
            <td>{{ item.name }}</td>
            <td>{{ item.version }}</td>
            <td>{{ item.updated }}</td>
        </tr>
        {% endfor %}
    </table>
</body>
</html>


上手くできているようです。
何か気が付いたことを書き留めていきます。


Amazonへのリンクも張ってみます。

コメント

コメントを投稿

このブログの人気の投稿

【KotlinとJava】分解宣言

wxPythonでのモーダルダイアログ作成