{% extends "base.html" %} {% block title %}MRWK Bounties{% endblock %} {% block content %}

Bounties

{% if selected_status %}{% endif %} {% if selected_repo %}{% endif %} {% if selected_issue_number %}{% endif %} {% if query_text %}Clear search{% endif %}
{% if query_text %}

Showing matches for “{{ query_text }}”.

{% endif %} {% if selected_repo or selected_issue_number %}

Source filter:{% if selected_repo %} {{ selected_repo }}{% endif %}{% if selected_issue_number %} #{{ selected_issue_number }}{% endif %}. Clear source filter

{% endif %}
Bounties shown {{ summary.bounties_shown }}
Awards open {{ summary.open_awards }}
Open reward pool {{ summary.open_pool_mrwk }} MRWK
Effectively open {{ summary.effective_open_awards }}
Effectively available {{ summary.effective_open_pool_mrwk }} MRWK
Capacity reduced {{ summary.reduced_capacity_bounties }}
Effectively unavailable {{ summary.effectively_unavailable_bounties }}

View JSON results

{% for bounty in bounties %}

{{ bounty.title }}

{{ bounty.status }}

{% set issue_url = safe_public_url(bounty.issue_url) %} {% if issue_url %} {{ bounty.repo }} #{{ bounty.issue_number }} · {% else %} {{ bounty.repo }} #{{ bounty.issue_number }} · {% endif %} {{ bounty.reward_mrwk }} MRWK per award · {{ bounty.available_mrwk }} MRWK still available before pending proposals · {{ bounty.awards_remaining }}/{{ bounty.max_awards }} awards visibly open · {{ bounty.effective_available_mrwk }} MRWK effectively available · {{ bounty.effective_awards_remaining }}/{{ bounty.max_awards }} awards effectively open

{% if bounty.availability_state != "open" or bounty.effective_awards_remaining != bounty.awards_remaining %}

{{ bounty.availability_note }}

{% endif %}

{{ bounty.acceptance }}

{% else %} {% if query_text or selected_status or selected_availability != "all" %}

No bounties match these filters.

Clear filters

{% else %}

No bounties yet.

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