From b25a0681a80c8f6085928822b75971aa1d279b50 Mon Sep 17 00:00:00 2001 From: "chris062689@gmail.com" Date: Sun, 17 Mar 2019 19:58:01 -0400 Subject: [PATCH] Updated bounties page. --- layouts/page/bounties.html | 122 ++++++++++++++++++++++--------------- 1 file changed, 73 insertions(+), 49 deletions(-) diff --git a/layouts/page/bounties.html b/layouts/page/bounties.html index 58c6618..e0edf82 100644 --- a/layouts/page/bounties.html +++ b/layouts/page/bounties.html @@ -6,54 +6,78 @@ {{ .Content }} - - - - - - - - - - - - - - - - {{ range .Site.Data.bounties }} - - - - - - - - - - - +
+
+

Pending Bounties

+ {{ range where .Site.Data.bounties "Status" "Unassigned" }} +
+
{{ .Description }}
+
+
Date SubmittedRequesterDeveloperStatusAmountDescriptionPayment StatusDeveloper ResponseDate Expires
- {{ .DateSubmitted }} - - {{ .Requester }} - - {{ .Developer }} - - {{ .Status }} - - {{ .Amount }} - - {{ .Description }} - - {{ .PaymentStatus }} - - {{ .DeveloperResponse }} - - {{ .DateExpires }} -
+ + + + + + + + + + {{ range .Requestors }} + + + + + + + {{ end }} + +
Date SubmittedRequesterAmountExpires Date
{{ .DateSubmitted }}{{ .Name }}{{ .Amount }}{{ .DateExpires }}
+ + {{ end }} - - - + + + +
+
+

Completed Bounties

+ {{ range where .Site.Data.bounties "Status" "Completed" }} +
+
{{ .Description }}
+
{{ .Status }} by {{ .Developer }} - {{ .Response }}
+
+ + + + + + + + + + + + {{ range .Requestors }} + + + + + {{ if eq .Paid true }} + + {{ else }} + + {{ end }} + + + {{ end }} + +
Date SubmittedRequesterAmountPaidExpires Date
{{ .DateSubmitted }}{{ .Name }}{{ .Amount }}YesNo{{ .DateExpires }}
+
+
+ {{ end }} +
+
+ -{{ end }} +{{ end }} \ No newline at end of file