This repository has been archived by the owner on Jan 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(submission_page): template of submissions incomplete
- Loading branch information
1 parent
11103bb
commit 48d650d
Showing
3 changed files
with
27 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{% extends "base.html" %} | ||
|
||
{% load crispy_forms_tags %} | ||
|
||
{% block title %}Submissions{% endblock title %} | ||
|
||
{% block content %} | ||
|
||
<h2>Submissions</h2> | ||
<ul> | ||
{% for submission in submissions %} | ||
<li> | ||
Submission ID: {{ submission.id }} - | ||
<a href="{% url 'tasks:detail' task.id %}"> | ||
- {{ task.title }} | ||
</a> | ||
- Status: {{ submission.status }} | ||
- Data: {{ submission.created_at }} | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
|
||
{% endblock content %} |