mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
35 lines
994 B
HTML
35 lines
994 B
HTML
{% block js %}
|
|
{% include 'partials/version_scripts.html' %}
|
|
<script>
|
|
$(document).ready(function() {
|
|
$(function () {
|
|
$( "#activity" ).hide();
|
|
$( "#activity" ).load( "{% url 'activity_feed' %}", function() {
|
|
$('#activity_loading').slideUp('slow',function(){
|
|
$('#activity').slideDown('slow');
|
|
});
|
|
var whiteList = $.fn.tooltip.Constructor.Default.whiteList
|
|
whiteList.ins = []
|
|
whiteList.del = []
|
|
$('#activity [data-toggle="popover"]').popover({whiteList: whiteList});
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
{% endblock %}
|
|
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h4>Recent Changes</h4>
|
|
</div>
|
|
<div class="list-group list-group-flush">
|
|
<div id="activity_loading" class="list-group-item text-center">
|
|
<div class="spinner-border text-primary" role="status">
|
|
<span class="sr-only">Loading...</span>
|
|
</div>
|
|
</div>
|
|
<div id="activity">
|
|
</div>
|
|
</div>
|
|
</div>
|