var row = $('#request-' +id);
$.ajax({
- url: "http://localhost:8000/api/pull-requests/" + id,
+ url: '{% url pullrequest_list %}/'+id,
dataType: 'json',
type: 'GET',
success: function(data) {
$.ajax({
- url: "http://localhost:8000/api/pull-requests/" + id,
+ url: '{% url pullrequest_list %}/'+id,
data: {action: 'accept'},
dataType: 'json',
type: 'PUT',
<table class="request-report" cellspacing="0">
<tr>
<th>Utwór</th><th>Użytkownik</th><th>Komentarz</th><th>Stan</th>
- <th>Akcje</th>
+ <th>Zgłoszono</th><th>Akcje</th>
</tr>
{% if objects %}
{% for pullreq in objects %}
<td class="column-user">{{ pullreq.comitter }}</td>
<td class="column-comment">{{ pullreq.comment }}</td>
<td class="column-status"> {{ pullreq.status }}</td>
- <td><button type="button" class="accept-button" title="{{pullreq.id}}">Akceptuj</button></td>
+ <td class="column-data">{{ pullreq.timestamp }}</td>
+ <td>
+ <button type="button" class="accept-button" title="{{pullreq.id}}">Akceptuj</button>
+ <a href="{% url editor_view pullreq.document %}?user=$prq-{{pullreq.id}}">Zobacz</a>
+ </td>
</tr>
{% endfor %}
{% else %}
- <tr><td colspan="*">Brak żądań</td></tr>
+ <tr><td colspan="6">Brak żądań</td></tr>
{% endif %}
</table>