{% extends "base.html" %} {% load static %} {% block title %}GitHub Issues - {{ block.super }}{% endblock %} {% block description %} Browse through all GitHub issues and pull requests {% endblock description %} {% block keywords %} GitHub Issues, Pull Requests, Open Source, Contributions {% endblock keywords %} {% block og_title %} GitHub Issues - Track and Browse GitHub Issues {% endblock og_title %} {% block og_description %} Explore all GitHub issues and pull requests. Track progress and contribute to open source. {% endblock og_description %} {% block content %} {% include "includes/sidenav.html" %}

Total

{{ total_count }}

Open

{{ open_count }}

Closed

{{ closed_count }}

Pull Requests

{{ pr_count }}

Issues

{{ issue_count }}

Add GitHub Issue with Bounty

{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% csrf_token %}
{{ form.github_url }} {% if form.github_url.help_text %}

{{ form.github_url.help_text }}

{% endif %} {% if form.github_url.errors %}
{% for error in form.github_url.errors %}

{{ error }}

{% endfor %}
{% endif %}
{% for issue in issues %}
{% if issue.type == 'pull_request' %} PR {% else %} Issue {% endif %}

{{ issue.title }}

{% if issue.state == 'open' %} Open {% else %} Closed {% endif %} {% if issue.is_merged %} Merged {% endif %}
{% if issue.body %}

{{ issue.body }}

{% endif %}
Created: {{ issue.created_at|date:"M d, Y" }} {% if issue.closed_at %}Closed: {{ issue.closed_at|date:"M d, Y" }}{% endif %} {% if issue.repo %} Repo: {{ issue.repo.name }} {% endif %} {% if issue.user_profile %} By: {% if issue.user_profile.github_url %} {{ issue.user_profile.user.username }} {% else %} {{ issue.user_profile.user.username }} {% endif %} {% endif %}
{% empty %}
No issues found matching your criteria.
{% endfor %}
{% if is_paginated %}
{% endif %}
{% endblock %}