diff options
author | Akshen | 2019-05-16 15:41:51 +0530 |
---|---|---|
committer | GitHub | 2019-05-16 15:41:51 +0530 |
commit | aa58a80b07cb997d3d089e6943517b541f28bb03 (patch) | |
tree | 1edd29dca5a7c8bbf5a2048d9a883609ff5d8700 /fossee_manim/templates | |
parent | bb3263ca69375b9e2948b481c8ff0b62da9e346f (diff) | |
parent | 03a913565b72ff950b2d7eb21bbf25864740dce4 (diff) | |
download | FOSSEE_animations-aa58a80b07cb997d3d089e6943517b541f28bb03.tar.gz FOSSEE_animations-aa58a80b07cb997d3d089e6943517b541f28bb03.tar.bz2 FOSSEE_animations-aa58a80b07cb997d3d089e6943517b541f28bb03.zip |
Merge pull request #15 from Akshen/develop
Rejection and Comments
Diffstat (limited to 'fossee_manim/templates')
-rw-r--r-- | fossee_manim/templates/fossee_manim/proposal_status.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fossee_manim/templates/fossee_manim/proposal_status.html b/fossee_manim/templates/fossee_manim/proposal_status.html index b7a62f6..e9752ca 100644 --- a/fossee_manim/templates/fossee_manim/proposal_status.html +++ b/fossee_manim/templates/fossee_manim/proposal_status.html @@ -33,6 +33,7 @@ <th>Title</th> <th>Contributor Name</th> <th>Status</th> + <th>Created Date</th> </tr> </thead> {% for an in anime_list %} @@ -41,6 +42,7 @@ <td>{{ an.title }}</td> <td>{{ an.contributor.get_full_name }}</td> <td><span class="badge">{{ an.status }}</span></td> + <td><span class="badge">{{ an.created }}</span></td> <td><a href="{% url 'edit_proposal' an.id %}"><button type="button" class="btn btn-info">View</button></a></td> </tr> </tbody> |