##// END OF EJS Templates
add cgs_status command to rc/models.py to program cgs
add cgs_status command to rc/models.py to program cgs

File last commit:

r338:7377db7c77e8
r417:bd23d85743d8
Show More
cancel.js
13 lines | 410 B | application/javascript | JavascriptLexer
Nueva plantilla, prueba comunicacion y nuevos campos ddsrest
r338 (function($) {
'use strict';
$(function() {
$('.cancel-link').on('click', function(e) {
e.preventDefault();
if (window.location.search.indexOf('&_popup=1') === -1) {
window.history.back(); // Go back if not a popup.
} else {
window.close(); // Otherwise, close the popup.
}
});
});
})(django.jQuery);