
Examples of reports: * /report/activity - all commits (default metric) in default project_type and default release * /report/activity?metric=marks&module=glance - all marks in Glance * /report/activity?metric=commits&module=glance&user_id=vsergeyev&release=icehouse - all commits into Glance from specified user during Icehouse * /report/activity?metric=commits&project_type=all&release=all&query_message=docimpact - all commits into all projects and all releases that have 'docimpact' in message Change-Id: I51a3981429a3eafa320199244e4c06796cea4b19
11 lines
252 B
HTML
11 lines
252 B
HTML
{% extends "reports/base_report.html" %}
|
|
{% import '_macros/activity_log.html' as activity_log %}
|
|
|
|
{% block title %}
|
|
Activity Log
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{{ activity_log.show_activity_log(gravatar_size=64, show_all=False) }}
|
|
{% endblock %}
|