Skip to content

Instantly share code, notes, and snippets.

@lkrych
Created April 18, 2019 04:28
Show Gist options
  • Save lkrych/b229f5b33f240d8d848ffa64f30f3979 to your computer and use it in GitHub Desktop.
Save lkrych/b229f5b33f240d8d848ffa64f30f3979 to your computer and use it in GitHub Desktop.
for hackathon
<!doctype html>
<title>Hello from Flask</title>
<h1>{{project_name}}</h1>
<h2>Teams</h2>
<table>
{% for team in teams %}
<tr>
<td><a href=/team/{{team.name}}> {{team.name}}</a></td>
</tr>
{% endfor %}
</table>
<h2>Users</h2>
<table>
{% for user in users %}
<tr>
<td><img src="{{user.avatar_url}}" width="50" height="50"></td>
<td>{{user.login}}</td>
<td><a href={{user.html_url}}> user profile</a></td>
</tr>
{% endfor %}
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment