{% extends "base.html" %} {% block title %}Accepted Work Activity{% endblock %} {% block content %}

Accepted work activity

Proof-backed MRWK bounty payments, grouped by contributor account.

{% if account and query %}

Showing accepted work for {{ account }} matching "{{ query }}"{% if account_page_url %} · View account profile{% endif %}

{% elif account %}

Showing accepted work for {{ account }}{% if account_page_url %} · View account profile{% endif %}

{% elif query %}

Showing accepted work matching “{{ query }}”.

{% endif %}
{{ totals.accepted_awards }}accepted awards
{{ totals.accepted_mrwk }}accepted MRWK
{{ totals.contributors }}contributors
{{ pending_totals.pending_awards }}pending awards
{{ pending_totals.pending_mrwk }}pending MRWK

Contributors

{% if contributors %}
{% for contributor in contributors %}
{{ contributor.account }} {{ contributor.accepted_awards }} accepted
{{ contributor.accepted_mrwk }} MRWK
Latest work
{% set latest_submission_url = safe_public_url(contributor.latest_submission_url) %}
{% if latest_submission_url %}{{ contributor.latest_submission_url | replace("https://github.com/", "") }}{% else %}{{ contributor.latest_submission_url }}{% endif %}
Latest bounty
{% set latest_bounty_issue_url = safe_public_url(contributor.latest_bounty_issue_url) %}
{% if latest_bounty_issue_url %}{{ contributor.latest_bounty_repo }} #{{ contributor.latest_bounty_issue_number }}{% else %}-{% endif %}
{% endfor %}
{% else %} {% if query %}

No contributors match this search.

{% else %}

No accepted bounty payments yet.

{% endif %} {% endif %}

Pending accepted work

Queued for treasury execution, not proof-backed paid work.

{% if pending_payouts %}
{% for row in pending_payouts %}
{{ row.amount_mrwk or "-" }}{% if row.amount_mrwk %} MRWK{% endif %}
Contributor
{{ row.account }}
Bounty
{% set pending_bounty_issue_url = safe_public_url(row.bounty_issue_url) %}
{% if row.bounty_url %}Bounty #{{ row.bounty_id }}{% endif %} {% if row.bounty_url and pending_bounty_issue_url %} · {% endif %} {% if pending_bounty_issue_url %}{{ row.bounty_repo }} #{{ row.bounty_issue_number }}{% elif not row.bounty_url %}-{% endif %}
Accepted work
{% set pending_submission_url = safe_public_url(row.submission_url) %}
{% if pending_submission_url %}{{ row.submission_url | replace("https://github.com/", "") }}{% elif row.submission_url %}{{ row.submission_url }}{% else %}-{% endif %}
Accepted by
{{ row.accepted_by or "-" }}
Executes after
{{ row.executes_after }}
{% endfor %}
{% else %} {% if query %}

No pending accepted work matches this search.

{% else %}

No pending accepted work rows.

{% endif %} {% endif %}

Recent accepted work

{% if recent %}
{% for row in recent %}
{{ row.amount_mrwk }} MRWK
Contributor
{{ row.account }}
Bounty
{% set bounty_issue_url = safe_public_url(row.bounty_issue_url) %}
{% if row.bounty_url %}Bounty #{{ row.bounty_id }}{% endif %} {% if row.bounty_url and bounty_issue_url %} · {% endif %} {% if bounty_issue_url %}{{ row.bounty_repo }} #{{ row.bounty_issue_number }}{% elif not row.bounty_url %}-{% endif %}
Accepted work
{% set submission_url = safe_public_url(row.submission_url) %}
{% if submission_url %}{{ row.submission_url | replace("https://github.com/", "") }}{% else %}{{ row.submission_url }}{% endif %}
{% endfor %}
{% else %} {% if query %}

No accepted work matches this search.

Clear search

{% else %}

No proof-backed accepted work rows yet.

{% endif %} {% endif %}
{% endblock %}