Intitial teams support #147
@ -332,8 +332,7 @@
|
||||
white-space: nowrap
|
||||
|
||||
.ext-review-list-activity
|
||||
display: flex
|
||||
+padding(0, x)
|
||||
width: 1%
|
||||
|
||||
.rating-form
|
||||
select
|
||||
|
@ -19,5 +19,6 @@ class CannedResponseAdmin(admin.ModelAdmin):
|
||||
class ReviewActivityAdmin(admin.ModelAdmin):
|
||||
list_display = (
|
||||
'__str__',
|
||||
'user',
|
||||
'date_created',
|
||||
)
|
||||
|
@ -8,15 +8,17 @@
|
||||
</td>
|
||||
<td>{% include "extensions/components/authors.html" %}</td>
|
||||
<td title="{{ extension.date_created }}">{{ extension.date_created|naturaltime_compact }}</td>
|
||||
<td class="d-flex">
|
||||
<a href="{{ extension.get_review_url }}#activity">
|
||||
<span>{{ stats.count }}</span>
|
||||
</a>
|
||||
<a href="{{ extension.get_review_url }}#activity-{{ stats.last_activity.id }}" class="ms-3">
|
||||
<td class="ext-review-list-activity" colspan="2">
|
||||
<a href="{{ extension.get_review_url }}#activity-{{ stats.last_activity.id }}">
|
||||
<span>{{ stats.last_activity.date_created|naturaltime_compact }}</span>
|
||||
</a>
|
||||
{% include "files/components/scan_details_flag.html" with suspicious_files=extension.suspicious_files %}
|
||||
</td>
|
||||
<td class="ext-review-list-activity ps-0 text-center">
|
||||
<a href="{{ extension.get_review_url }}#activity">
|
||||
<span class="badge">{{ stats.count }}</span>
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="{{ extension.get_review_url }}" class="text-decoration-none">
|
||||
{% with last_type=stats.last_type_display|default:"Awaiting Review" %}
|
||||
|
@ -29,7 +29,8 @@
|
||||
<th>{% trans "Name" %}</th>
|
||||
<th>{% trans "Author" %}</th>
|
||||
<th>{% trans "Submitted" %}</th>
|
||||
<th>{% trans "Activity" %}</th>
|
||||
<th colspan="2">{% trans "Activity" %}</th>
|
||||
<th></th>
|
||||
<th>{% trans "Status" %}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
Loading…
Reference in New Issue
Block a user