
* Record filter to return records referred by blueprints * Common code for activity stream processing is extracted into template Change-Id: I1d36ba2be3c76fafcf25a09ffbb40cfc083271da
26 lines
677 B
HTML
26 lines
677 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>
|
|
|
|
{{ 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_gravatar=false, gravatar_size=64) }}
|
|
|
|
{% endblock %}
|