diff --git a/dreditor.user.js b/dreditor.user.js
index 631d996..2890af7 100644
--- a/dreditor.user.js
+++ b/dreditor.user.js
@@ -1300,6 +1300,11 @@ Drupal.dreditor.patchReview.behaviors.toggleDeletions = function (context) {
 Drupal.behaviors.dreditorIssueSummary = function (context) {
   // Limit to project_issue node view page.
   $('#project-summary-container').once('dreditor-issue-summary', function () {
+
+    // Scrape the original poster link for later use.
+    var op_link_href = $('div.node > div.submitted a').attr('href');
+    var op_link_html = $('div.node > div.submitted a').html();
+
     // Clone "Edit" link after "Issue summary" title.
     var $edit_wrapper = $('<small class="admin-link"> [ <span></span> ] </small>');
     var $edit_link = $('#tabs a:contains("Edit")').clone();
@@ -1318,6 +1323,15 @@ Drupal.behaviors.dreditorIssueSummary = function (context) {
         // $widget.append($data.find('div.help'));
         $widget.append($data.find('#node-form'));
 
+        // Append button to insert issue summary template.
+        var $summary_link = $('<a class="dreditor-button dreditor-summary-template" href="">Add template</a>').click(function() {
+                var op_link = '&lt;a href="' + op_link_href + '"&gt;' + op_link_html + '&lt;/a&gt;'
+                var template_markup = '&lt;h3 id="summary-problem-motivation"&gt;Problem/Motivation&lt;/h3&gt; \n\n&lt;h3 id="summary-proposed-resolution"&gt;Proposed resolution&lt;/h3&gt; \n\n&lt;h3 id="summary-remaining-tasks"&gt;Remaining tasks&lt;/h3&gt; \n\n&lt;h3 id="summary-ui-changes"&gt;User interface changes&lt;/h3&gt; \n\n&lt;h3 id="summary-api-changes"&gt;API changes&lt;/h3&gt; \n\n&lt;h3 id="summary-original-report"&gt;Original report by ' + op_link + '&lt;/h3&gt;\n\n';
+                $(this).parent().find('textarea#edit-body').prepend(template_markup);
+                return false;
+            });
+        $widget.find('div#edit-body-wrapper').prepend($summary_link);
+
         // For users with just one input format, wrap filter tips in a fieldset.
         // @todo Abstract this into a behavior. Also applies to comment form.
         $widget.find('fieldset > ul.tips')
