diff --git a/themes/vocabulary_theme/templates/issue_finder.html b/themes/vocabulary_theme/templates/issue_finder.html index fdf625d2b..595f4182b 100644 --- a/themes/vocabulary_theme/templates/issue_finder.html +++ b/themes/vocabulary_theme/templates/issue_finder.html @@ -3,40 +3,58 @@ {% block title %}{{ this.title }}{% endblock %} {% block body %} -
{{ this.description }}
+Loading issues...
+- - - {{ issue.repo }}#{{ issue.number }} - - - - - opened on {{ dateCreated }}. -
-- No results. -
-No results.
"; + return; + } + + // Create an issue card for each filtered issue + filteredIssues.forEach((issue) => { + const issueCard = document.createElement("div"); + issueCard.className = "issue-card"; + issueCard.innerHTML = ` ++ + ${issue.repo}#${issue.number} + + opened on ${issue.created_at.split("T")[0]}. +
+