Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save smzn/50f07c34e903efab8c5c6aa6ea000d50 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>{{ application.title }} - 詳細</title>
</head>
<body>
<p>
<a href="{{ url_for('index') }}">← アプリ一覧に戻る</a>
</p>
<hr>
<h1>{{ application.title }}</h1>
<table border="1" cellspacing="0" cellpadding="10" width="600">
<tr>
<th width="30%" bgcolor="#f0f0f0">ID</th>
<td>{{ application.id }}</td>
</tr>
<tr>
<th bgcolor="#f0f0f0">カテゴリ</th>
<td>
<a href="{{ url_for('category_detail', id=application.category.id) }}">
{{ application.category.name }}
</a>
</td>
</tr>
<tr>
<th bgcolor="#f0f0f0">担当部署</th>
<td>{{ application.department }}</td>
</tr>
<tr>
<th bgcolor="#f0f0f0">チーム名</th>
<td>{{ application.team_name }}</td>
</tr>
<tr>
<th bgcolor="#f0f0f0">受賞歴</th>
<td>{{ application.award }}</td>
</tr>
<tr>
<th bgcolor="#f0f0f0">オープンデータ活用</th>
<td>{{ application.open_data }}</td>
</tr>
<tr>
<th bgcolor="#f0f0f0">詳細説明</th>
<td>
<div style="white-space: pre-wrap;">{{ application.description }}</div>
</td>
</tr>
</table>
<br>
<hr>
<h3>他のカテゴリを探す</h3>
<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>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment