Skip to content

Commit

Permalink
load terms into table with eta
Browse files Browse the repository at this point in the history
  • Loading branch information
ehanahamed committed Nov 20, 2024
1 parent 2ff44d5 commit 4e11484
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion web/views/studyset.html
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,18 @@ <h2 id="mainActionsStudysettitle"><eta>= data.studyset.title </eta></h2>
<th>Definition</th>
</tr>
</thead>
<tbody></tbody>
<tbody>
<eta> data.studyset.data.terms.forEach(function (term) { </eta>
<tr>
<td>
<eta>= term[0]</eta>
</td>
<td>
<eta>= term[1]</eta>
</td>
</tr>
<eta>})</eta>
</tbody>
</table>
<div id="mainOpenBottomdiv">
<button
Expand Down

0 comments on commit 4e11484

Please sign in to comment.