Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Djangoを使用してアプリをビルドしています。データベースからデータを取得し、それをhtmlページの動的テーブルに配置する必要があります。助けてください。
テンプレートを使おう!
<table> {% for key, value in data %} <tr> <td>{{ key|title }}</td> <td>{{ value }}</td> </tr> {% endfor %} </table>