Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/static/riot/datasets/management.tag
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
<tbody>
<tr>
<td>{selected_row.key}</td>
<td>{selected_row.created_by}</td>
<td><a href="/profiles/user/{selected_row.created_by}/" target=_blank>{selected_row.created_by}</a></td>
<td>{pretty_date(selected_row.created_when)}</td>
<td>{_.startCase(selected_row.type)}</td>
<td>{_.startCase(selected_row.is_public)}</td>
Expand Down
2 changes: 1 addition & 1 deletion src/static/riot/submissions/resource_submissions.tag
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
<td if="{selected_row.competition}"><a class="link-no-deco" target="_blank" href="../competitions/{ selected_row.competition.id }">{ selected_row.competition.title }</a></td>
<!-- show empty td if competition is not available -->
<td if="{!selected_row.competition}"></td>
<td>{selected_row.created_by}</td>
<td><a href="/profiles/user/{selected_row.created_by}/" target=_blank>{selected_row.created_by}</a></td>
<td>{pretty_date(selected_row.created_when)}</td>
<td>{_.startCase(selected_row.type)}</td>
<td>{_.startCase(selected_row.is_public)}</td>
Expand Down
2 changes: 1 addition & 1 deletion src/static/riot/tasks/management.tag
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
<div class="content">
<h4>{selected_task.description}</h4>
<div class="ui divider" show="{selected_task.description}"></div>
<div><strong>Created By:</strong> {selected_task.created_by}</div>
<div><strong>Created By:</strong> <a href="/profiles/user/{selected_task.created_by}/" target=_blank>{selected_task.created_by}</a></div>
<div><strong>Key:</strong> {selected_task.key}</div>
<div><strong>Has Been Validated
<span data-tooltip="A task has been validated once one of its solutions has successfully been run against it">
Expand Down