-
-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4498 from v-anne/4486-email-pray-and-pay
4486 email pray and pay
- Loading branch information
Showing
5 changed files
with
230 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
{% load text_filters %} | ||
{% load humanize %} | ||
{% load tz %} | ||
|
||
<!DOCTYPE html> | ||
<html style="font-size: 100.01%; font-weight: inherit; font-family: inherit; border: 0; vertical-align: baseline; font-style: inherit; margin: 0; padding: 0;"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<style type="text/css"> | ||
a:visited { text-decoration: none !important; } | ||
a:hover { text-decoration: none !important; } | ||
a:focus { text-decoration: none !important; } | ||
</style> | ||
</head> | ||
<body style="font-size: 75%; font-weight: inherit; line-height: 1.5; font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif; color: #222; border: 0; vertical-align: baseline; font-style: inherit; background: #fff; margin: 0; padding: 0;"> | ||
<h1 class="bottom" style="font-size: 3em; font-weight: normal; line-height: 1; font-family: inherit; color: #111; border: 0; vertical-align: baseline; font-style: inherit; margin: 0; padding: 0;"> | ||
<a href="https://www.courtlistener.com" style="font-size: 100%; font-weight: inherit; font-family: inherit; color: #111; border: 0; font-style: inherit; padding: 0; text-decoration: none; vertical-align: baseline; margin: 0;"> | ||
Your Wish Has Been Granted! | ||
</a> | ||
</h1> | ||
<hr style="background: #ddd; color: #ddd; clear: both; float: none; width: 60%; height: .1em; margin: 0 0 1.45em; border: none;"> | ||
|
||
<p>The document you were waiting for is now available in RECAP.</p> | ||
<h2 style="font-size: 2em; font-weight: normal; font-family: inherit; color: #111; border: 0; vertical-align: baseline; font-style: inherit; margin: 0; padding: 0;"> | ||
{{ docket|best_case_name|safe }} | ||
{% if docket.docket_number %}({{ docket.docket_number }}){% endif %} | ||
</h2> | ||
<h3 class="alt bottom" style="font-size: 1.5em; font-weight: normal; line-height: 1; font-family: 'Warnock Pro', 'Goudy Old Style','Palatino','Book Antiqua', Georgia, serif; color: #666; border: 0; vertical-align: baseline; margin: 0; padding: 0;">{{ docket.court }}</h3> | ||
<p style="font-weight: inherit; font-family: inherit; border: 0; vertical-align: baseline; font-style: inherit; margin: 0 0 1.5em; padding: 0;"> | ||
<a href="https://www.courtlistener.com{{ docket.get_absolute_url }}?order_by=desc">View Docket on CourtListener</a><br> | ||
</p> | ||
|
||
<table cellpadding="8"> | ||
<thead> | ||
<tr> | ||
<th style="text-align: center">Document<br>Number</th> | ||
<th>Date Filed</th> | ||
<th>Description</th> | ||
<th>View Document</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td style="text-align: center">{{ docket_entry.entry_number }}{% if rd.attachment_number %}-{{ rd.attachment_number }}{% endif %}</td> | ||
<td> | ||
{% if docket_entry.datetime_filed %} | ||
<span title="{{ docket_entry.datetime_filed|timezone:timezone}}">{{ docket_entry.datetime_filed|timezone:timezone|date:"M j, Y" }}</span> | ||
{% else %} | ||
{{ docket_entry.date_filed|date:"M j, Y"|default:'<em class="gray">Unknown</em>' }} | ||
{% endif %} | ||
</td> | ||
<td> | ||
{% if rd.description %} | ||
{{ rd.description|safe }} | ||
{% else %} | ||
{{ docket_entry.description|safe|default:"<em>Unknown</em>"|safe }} | ||
{% endif %} | ||
</td> | ||
<td> | ||
<a href="https://www.courtlistener.com{{document_url}}">Click here to view. | ||
</a> | ||
</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
|
||
<p>You requested it on {{ date_created|date:"M j, Y" }} | ||
<p>{{num_waiting}} people were also waiting for it.</p> | ||
{% if price %}<p>Somebody paid ${{ price }} to make it available to all of us.</p>{% endif %} | ||
|
||
<p style="font-size: 1em; font-weight: inherit; font-family: inherit; border: 0; vertical-align: baseline; font-style: inherit; margin: 0 0 1.5em; padding: 0;"> | ||
<strong>This alert brought to you by the non-profit Free Law Project. | ||
<a href="https://donate.free.law/forms/supportflp" style="font-size: 100%; font-weight: inherit; font-family: inherit; color: #009; border: 0; font-style: inherit; padding: 0; text-decoration: none; vertical-align: baseline; margin: 0;"> | ||
Please donate to support our work</a>. | ||
</strong> | ||
</p> | ||
</body> | ||
</html> |
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,33 @@ | ||
{% load text_filters %}{% load humanize %}{% load tz %}***************** | ||
CourtListener.com | ||
***************** | ||
------------------------------------------------------- | ||
Your Wish Has Been Granted! | ||
------------------------------------------------------- | ||
|
||
The document you were waiting for is now available in RECAP. | ||
------------------------------------------------------- | ||
|
||
{{ docket|best_case_name|safe }} {% if docket.docket_number %}({{ docket.docket_number }}){% endif %} | ||
{{ docket.court }} | ||
~~~ | ||
View Docket: https://www.courtlistener.com{{ docket.get_absolute_url }}?order_by=desc | ||
|
||
Document Number: {{ docket_entry.entry_number }}{% if rd.attachment_number %}-{{ rd.attachment_number }}{% endif %} | ||
Date Filed: {% if docket_entry.datetime_filed %}{{ docket_entry.datetime_filed|timezone:timezone|date:"M j, Y" }}{% else %}{{ docket_entry.date_filed|date:"M j, Y"|default:'Unknown' }}{% endif %} | ||
Description: {% if rd.description %}{{ rd.description|safe|wordwrap:80 }}{% else %}{{ docket_entry.description|default:"Unknown docket entry description"|safe|wordwrap:80 }}{% endif %} | ||
View Document: https://www.courtlistener.com{{document_url}} | ||
~~~ | ||
You requested it on {{ date_created|date:"M j, Y" }} | ||
{{num_waiting}} people were also waiting for it. | ||
Somebody paid ${{ price }} to make it available to all of us. | ||
|
||
************************ | ||
This alert brought to you by the 501(c)(3) non-profit Free Law Project | ||
- Blog: https://free.law | ||
- BlueSky: https://bsky.app/profile/free.law | ||
- X: https://x.com/freelawproject | ||
- Donate: https://donate.free.law/forms/supportflp | ||
- Become a Member: https://donate.free.law/forms/membership | ||
|
||
Please donate to support our work. |
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