{% from "pr-table.html" import pr_table with context %} {% from "dev-deploy-table.html" import dev_deploy_table with context %} {% from "team-table.html" import team_table with context %} {% extends "layout.html" %} {% block title %}User Homepage{% endblock %} {% block head %} {% endblock %} {% block content %}

Welcome, {{ username }}!

GitHub username: {{ gh_username }}
{% for wb in actionable_wbs %} {% if wb.prs is not none %}

{{ wb.branch }} Awaiting Action

{{ pr_table(wb, "actionitems", "actionitemsSearchBar") }} {% endif %} {% endfor %}
{% for wb in pr_wbs %} {% if wb.prs is not none %}

{{ wb.branch }} PRs

{{ pr_table(wb, "myprs", "myprsSearchBar") }} {% endif %} {% endfor %}
{% for wb in review_wbs %} {% if wb.prs is not none %}

{{ wb.branch }} Reviews

{{ pr_table(wb, "reviews", "reviewsSearchBar") }} {% endif %} {% endfor %}

Authorize SHA

{{ team_table(team_member) }}

Dev Deploys

{{ dev_deploy_table(dev_deploys) }}
{% endblock %}