realms-wiki/realms/templates/wiki/history.html

61 lines
1.7 KiB
HTML
Raw Normal View History

2013-10-02 04:50:48 +03:00
{% extends 'layout.html' %}
{% block body %}
2014-09-05 00:35:28 +03:00
<h2>History for <strong>{{ name }}</strong></h2>
<p>
<a class="btn btn-default btn-sm compare-revisions">Compare Revisions</a>
</p>
2013-10-03 17:58:07 +03:00
2014-09-05 00:35:28 +03:00
<table class="table table-bordered revision-tbl">
2013-10-03 17:58:07 +03:00
<thead>
<tr>
2014-09-05 00:35:28 +03:00
<th></th>
<th>Name</th>
<th>Revision Message</th>
<th>Date</th>
2013-10-03 17:58:07 +03:00
</tr>
</thead>
2013-10-02 04:50:48 +03:00
{% for h in history %}
2014-09-05 00:35:28 +03:00
<tr>
<td class="checkbox-cell text-center">
{% if h.type != 'delete' %}
2014-09-05 00:35:28 +03:00
<input type="checkbox" name="versions[]" value="{{ h.sha }}" />
{% endif %}
2014-09-05 00:35:28 +03:00
</td>
2015-12-16 07:30:33 +02:00
<td><img src="{{ h.gravatar }}?s=20" class="avatar"/> {{ h.author }}</td>
2014-09-05 00:35:28 +03:00
<td><a href="{{ url_for('wiki.commit', name=name, sha=h.sha) }}" class='label label-primary'>View</a> {{ h.message }} </td>
<td>{{ h.time|datetime }}</td>
</tr>
2013-10-02 04:50:48 +03:00
{% endfor %}
2014-09-05 00:35:28 +03:00
</table>
<p>
<a class="btn btn-default btn-sm compare-revisions">Compare Revisions</a>
</p>
2013-10-03 17:58:07 +03:00
{% endblock %}
{% block js %}
2014-09-05 00:35:28 +03:00
<script>
$(function(){
$('.revision-tbl :checkbox').change(function () {
2013-10-03 17:58:07 +03:00
var $cs=$(this).closest('.revision-tbl').find(':checkbox:checked');
if ($cs.length > 2) {
2014-09-05 00:35:28 +03:00
this.checked=false;
2013-10-03 17:58:07 +03:00
}
2014-09-05 00:35:28 +03:00
});
2013-10-02 04:50:48 +03:00
2014-09-05 00:35:28 +03:00
$(".compare-revisions").click(function(){
2013-10-03 17:58:07 +03:00
var $cs = $('.revision-tbl').find(':checkbox:checked');
if ($cs.length != 2) return;
var revs = [];
$.each($cs, function(i, v){
2014-09-05 00:35:28 +03:00
revs.push(v.value);
2013-10-03 17:58:07 +03:00
});
2013-10-15 23:32:17 +03:00
revs.reverse();
revs = revs.join("..");
location.href = "{{ config.RELATIVE_PATH }}/_compare/{{ name }}/" + revs;
2014-09-05 00:35:28 +03:00
});
2013-10-03 17:58:07 +03:00
});
2014-09-05 00:35:28 +03:00
</script>
2015-12-16 07:30:33 +02:00
{% endblock %}