As superuser or staff, you can edit metadata (owner, visibility, name,
description, citation) for these datasets.
Set ID
Objects
Query
Products
Last updated
{% end %}
{% block pagejs_modules %}
{% end %}
{% block pagejs %}
$(document).ready(function() {
// format all the moments
$('.moment-format').each(function (index, elem) {
// get the text we need
var mt = moment($(this).text()).fromNow();
$(this).html($(this).text() + ' (' + mt + ')');
});
// get the most recent 1000 datasets on the server
lcc_ui.get_recent_datasets(1000, null, false);
// UI action setup
lcc_ui.action_setup();
// admin action setup
lcc_admin.action_setup();
});
{% end %}