diff --git a/core/static/js/base/amadeus.js b/core/static/js/base/amadeus.js index 2f407e5..731d026 100644 --- a/core/static/js/base/amadeus.js +++ b/core/static/js/base/amadeus.js @@ -134,6 +134,10 @@ This functions get the next 5 notifications from the user given a "step"(an amou function getNotifications(step){ $.get('/getNotifications', {'steps':step, 'amount': 5}, function(data){ - console.log(data); + $("#notification-dropdown").append(data); + $('#notification-see-more').remove(); + var seemore = '
  • See More

  • '; + $("#notification-dropdown").append(seemore); + $("#notification-count").text(step+5); }); } diff --git a/core/templates/base.html b/core/templates/base.html index df40728..01ec35a 100644 --- a/core/templates/base.html +++ b/core/templates/base.html @@ -58,14 +58,14 @@