123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- {% extends "base.html" %}
- {% load cycle from future %}
- {% load static from staticfiles %}
- {% load cache %}
- {% load package_extras %}
- {% load todolists %}
- {% block title %}{{ BRANDING_DISTRONAME }} - Hacker Dashboard{% endblock %}
- {% block content %}
- <div id="dev-dashboard" class="box">
- <h2>Developer Dashboard</h2>
- <h3>My Flagged Packages</h3>
- <table id="dash-myflagged" class="results">
- <thead>
- <tr>
- <th>Name</th>
- <th>Version</th>
- <th>Testing Version</th>
- <th>Repo</th>
- <th>Arch</th>
- <th>Flagged</th>
- <th>Last Updated</th>
- </tr>
- </thead>
- <tbody>
- {% for pkg in flagged %}
- <tr class="{% cycle 'odd' 'even' %}">
- <td>{% pkg_details_link pkg %}</td>
- <td>{{ pkg.full_version }}</td>
- <td>{% with pkg.in_testing as tp %}{% if tp %}
- <a href="{{ tp.get_absolute_url }}"
- title="Testing package details for {{ tp.pkgname }}">{{ tp.full_version }}</a>
- {% endif %}{% endwith %}</td>
- <td>{{ pkg.repo.name }}</td>
- <td>{{ pkg.arch.name }}</td>
- <td>{{ pkg.flag_date|date }}</td>
- <td>{{ pkg.last_update|date }}</td>
- </tr>
- {% empty %}
- <tr class="empty"><td colspan="7"><em>No flagged packages to display</em></td></tr>
- {% endfor %}
- </tbody>
- </table>
- <h3>My Incomplete Todo List Packages</h3>
- <table id="dash-mytodolist" class="results">
- <thead>
- <tr>
- <th>Todo List</th>
- <th>Name</th>
- <th>Repo</th>
- <th>Arch</th>
- <th>Maintainer(s)</th>
- </tr>
- </thead>
- <tbody>
- {% for todopkg in todopkgs %}
- <tr class="{% cycle 'odd' 'even' %}">
- <td><a href="{{ todopkg.todolist.get_absolute_url }}"
- title="View todo list: {{ todopkg.todolist.name }}">{{ todopkg.todolist.name }}</a></td>
- <td>{% todopkg_details_link todopkg %}</td>
- <td>{{ todopkg.repo.name }}</td>
- <td>{{ todopkg.arch.name }}</td>
- <td>{{ todopkg.pkg.maintainers|join:', ' }}</td>
- </tr>
- {% empty %}
- <tr class="empty"><td colspan="5"><em>No incomplete todo list packages to display</em></td></tr>
- {% endfor %}
- </tbody>
- </table>
- <h3>Package Todo Lists</h3>
- <table id="dash-todo" class="results">
- <thead>
- <tr>
- <th>Name</th>
- <th>Creation Date</th>
- <th>Creator</th>
- <th>Description</th>
- <th>Package Count</th>
- <th>Incomplete Count</th>
- </tr>
- </thead>
- <tbody>
- {% for todo in todos %}
- <tr class="{% cycle 'odd' 'even' %}">
- <td><a href="{{ todo.get_absolute_url }}"
- title="View todo list: {{ todo.name }}">{{ todo.name }}</a></td>
- <td>{{ todo.created|date }}</td>
- <td>{{ todo.creator.get_full_name }}</td>
- <td class="wrap">{{ todo.description|urlize }}</td>
- <td>{{ todo.pkg_count }}</td>
- <td>{{ todo.incomplete_count }}</td>
- </tr>
- {% empty %}
- <tr class="empty"><td colspan="6"><em>No package todo lists to display</em></td></tr>
- {% endfor %}
- </tbody>
- </table>
- <h3>Signoff Status</h3>
- <table id="dash-signoffs" class="results">
- <thead>
- <tr>
- <th>Name</th>
- <th>Version</th>
- <th>Arch</th>
- <th>Target Repo</th>
- <th>Last Updated</th>
- <th>Approved</th>
- <th>Signoffs</th>
- </tr>
- </thead>
- <tbody>
- {% for group in signoffs %}
- <tr class="{% cycle 'odd' 'even' %}">
- <td>{% pkg_details_link group.package %}</td>
- <td>{{ group.version }}</td>
- <td>{{ group.arch.name }}</td>
- <td>{{ group.target_repo }}</td>
- <td>{{ group.last_update|date }}</td>
- {% if group.specification.known_bad %}
- <td class="approval signoff-bad">Bad</td>
- {% else %}
- {% if not group.specification.enabled %}
- <td class="approval signoff-disabled">Disabled</td>
- {% else %}
- <td class="approval signoff-{{ group.approved|yesno }}">{{ group.approved|yesno|capfirst }}</td>
- {% endif %}
- {% endif %}
- <td><ul class="signoff-list">
- {% for signoff in group.signoffs %}
- <li class="signed-username" title="Signed off by {{ signoff.user }}">{{ signoff.user }}{% if signoff.revoked %} (revoked){% endif %}</li>
- {% endfor %}
- </ul></td>
- </tr>
- {% empty %}
- <tr class="empty"><td colspan="7"><em>No packages you maintain or have packaged need signoffs</em></td></tr>
- {% endfor %}
- </tbody>
- </table>
- <h3>Developer Reports</h3>
- <ul>
- {% for report in reports %}
- <li><a href="reports/{{ report.slug }}/">{{ report.name }}</a>:
- {{ report.description }}
- {% if report.personal %}(<a href="reports/{{ report.slug }}/{{ user.username }}/">yours only</a>){% endif %}</li>
- {% endfor %}
- </ul>
- </div>{# #dev-dashboard #}
- <div id="stats-area">
- <div class="box">
- <h2>Developer Stats</h2>
- <p id="stats-message">Enable JavaScript to get more useful info here.</p>
- </div>
- </div>
- {% endblock %}
- {% block script_block %}
- {% load cdn %}{% jquery %}{% jquery_tablesorter %}
- <script type="text/javascript" src="{% static "archweb.js" %}"></script>
- <script type="text/javascript">
- $(document).ready(function() {
- $("#stats-message").html('Loading developer stats…');
- $("#stats-area").load('stats/', function(response, status, xhr) {
- if (status === 'error' || status === 'timeout') {
- $("#stats-message").html('Developer stats loading encountered an error. Sorry.');
- return;
- }
- var settings = {
- widgets: ['zebra'],
- sortList: [[0,0]],
- headers: { 1: { sorter: 'pkgcount' }, 2: { sorter: 'pkgcount' }, 3: { sorter: 'pkgcount' } }
- };
- $(".dash-stats").not($("#stats-by-maintainer")).tablesorter(settings);
- settings['sortLocaleCompare'] = true;
- $("#stats-by-maintainer").tablesorter(settings);
- });
- $("#dash-myflagged:not(:has(tbody tr.empty))").tablesorter(
- {widgets: ['zebra'], sortList: [[0,0]]});
- $("#dash-mytodolist:not(:has(tbody tr.empty))").tablesorter(
- {widgets: ['zebra'], sortList: [[0,0], [1,0]]});
- $("#dash-todo:not(:has(tbody tr.empty))").tablesorter(
- {widgets: ['zebra'], sortList: [[1,1]]});
- $("#dash-signoffs:not(:has(tbody tr.empty))").tablesorter({
- widgets: ['zebra'],
- sortList: [[0,0]],
- headers: { 6: {sorter: false } }
- });
- });
- </script>
- {% endblock %}
|