
Part of blueprint review-disagreements Change-Id: I6815c0641c7ef21ade958e3b8ecb03b61b307d13
40 lines
967 B
HTML
40 lines
967 B
HTML
{% extends "reports/base_report.html" %}
|
|
{% import '_macros/activity_log.html' as activity_log %}
|
|
|
|
{% block title %}
|
|
{{ user.user_name }} activity in OpenStack
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
<script type="text/javascript">
|
|
$(document).ready(function () {
|
|
render_punch_card("punch_card", [{{ punch_card_data }}]);
|
|
});
|
|
</script>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ user.user_name }} activity report</h1>
|
|
|
|
<h2>Profile</h2>
|
|
<ul>
|
|
{% if user.launchpad_id %}
|
|
<li>Launchpad: {{ user.launchpad_id }}</li>
|
|
{% endif %}
|
|
{% if user.core %}
|
|
<li>Core in:
|
|
{% for item in user.core %}
|
|
{{ item[0] }} ({{ item[1] }})
|
|
{% endfor %}
|
|
</li>
|
|
{% endif %}
|
|
</ul>
|
|
|
|
{{ show_contribution_summary(contribution) }}
|
|
|
|
<div id="punch_card" style="width: 100%; height: 350px;"></div>
|
|
|
|
{{ activity_log.show_activity_log(user_id=user.user_id, show_user_gravatar=false, gravatar_size=64) }}
|
|
|
|
{% endblock %}
|