Skip to content

Instantly share code, notes, and snippets.

@smzn
Created December 9, 2025 03:35
Show Gist options
  • Select an option

  • Save smzn/edcece1c29544df99b2f26dec6648f45 to your computer and use it in GitHub Desktop.

Select an option

Save smzn/edcece1c29544df99b2f26dec6648f45 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>製品アプリケーション一覧</title>
</head>
<body>
<h2>カテゴリから探す</h2>
<ul>
<li><a href="{{ url_for('index') }}">すべて表示</a></li>
{% for category in categories %}
<li>
<a href="{{ url_for('category_detail', id=category.id) }}">
{{ category.name }}
</a>
</li>
{% endfor %}
</ul>
<hr>
<h1>アプリケーション一覧</h1>
<table border="1" cellspacing="0" cellpadding="5">
<thead>
<tr>
<th>ID</th>
<th>アプリ名 (Title)</th> <th>カテゴリ</th>
<th>部署 / チーム</th> <th>受賞歴</th> <th>操作</th>
</tr>
</thead>
<tbody>
{% for app in applications %}
<tr>
<td>{{ app.id }}</td>
<td>
<strong>{{ app.title }}</strong>
</td>
<td>
{{ app.category.name }}
</td>
<td>
{{ app.department }}<br>
<small>({{ app.team_name }})</small>
</td>
<td>
{{ app.award }}
</td>
<td>
<a href="{{ url_for('application_detail', id=app.id) }}">詳細</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment