SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 4ae20801 authored by Jean-Sébastien Caux's avatar Jean-Sébastien Caux
Browse files

Debug and beautify

parent 566f9ff2
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,6 @@ __license__ = "AGPL v3"
from django import template
from django.db.models import Count, Max, Prefetch, Q
from django.utils.html import format_html, mark_safe
from django.urls import reverse
......
......@@ -74,6 +74,6 @@ class EdAdminFellowshipSearchForm(forms.Form):
),
latest_appraisal_datetime=Max(
"qualification__datetime",
filter=Q(status=Submission.SEEKING_ASSIGNMENT),
filter=Q(pool__status=Submission.SEEKING_ASSIGNMENT),
),
)
{% load crispy_forms_tags %}
{% load common_extras %}
<div class="m-2">
<div class="ms-4 mt-2">
<h4>Filter</h4>
<form
hx-post="{% url 'edadmin:monitor:_hx_college_fellow_activity_table' college=college.slug %}"
......
{% extends "scipost/base.html" %}
{% load common_extras %}
{% load colleges_extras %}
{% block content %}
<h1 class="highlight">
Fellow activity
Summary of recent Fellow activity
</h1>
{% for college in colleges %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment