mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
fix(FastAPI): include MergeBaseName in merge request type
This was done on the dedicated requests page, but missed on the dashboard. Signed-off-by: Steven Guikal <void@fluix.one>
This commit is contained in:
parent
7bfc2bf9b4
commit
9af76a73a3
1 changed files with 7 additions and 1 deletions
|
@ -20,7 +20,13 @@
|
|||
{{ request.PackageBase.Name }}
|
||||
</a>
|
||||
</td>
|
||||
<td>{{ request.RequestType.name_display() | tr }}</td>
|
||||
<td>
|
||||
{{ request.RequestType.name_display() | tr }}
|
||||
{# If the RequestType is a merge and request.MergeBaseName is valid... #}
|
||||
{% if request.RequestType.ID == 3 and request.MergeBaseName %}
|
||||
({{ request.MergeBaseName }})
|
||||
{% endif %}
|
||||
</td>
|
||||
<td class="wrap">{{ request.Comments }}</td>
|
||||
<td>
|
||||
<a href="/account/{{ request.User.Username }}"
|
||||
|
|
Loading…
Add table
Reference in a new issue