Skip to content

Commit

Permalink
fixup! views: add series-detail view
Browse files Browse the repository at this point in the history
  • Loading branch information
victor-accarini committed Feb 18, 2025
1 parent feb1b68 commit 95e5d93
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion patchwork/templates/patchwork/series-detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@ <h1>{{ series.name }}</h1>
<table class="patch-meta">
<tr>
<th>Cover Letter</th>
<td>{{ series.cover_letter.content|default:"No cover letter available" }}</td>
<td>
{% if series.cover_letter.content %}
<pre>{{ series.cover_letter.content }}</pre>
{% else %}
No cover letter available
{% endif %}
</td>
</tr>
<tr>
<th>Date</th>
Expand Down

0 comments on commit 95e5d93

Please sign in to comment.