Merged in [19299] from rjsparks@nostrum.com:

Change the caching model for the nonwg list page.
 - Legacy-Id: 19322
Note: SVN reference [19299] has been migrated to Git commit fe5cfbd11d
This commit is contained in:
Robert Sparks 2021-09-03 17:24:58 +00:00
commit 36369f816e
2 changed files with 3 additions and 5 deletions

View file

@ -3,7 +3,6 @@
import re
from django.shortcuts import render
from django.views.decorators.cache import cache_page
import debug # pyflakes:ignore
@ -15,9 +14,6 @@ def groups(request):
return render(request, "mailinglists/group_archives.html", { "groups": groups } )
# we run the import_mailman_listinfo command via cron once per hour; we can
# safely cache this for some time.
@cache_page(15*60)
def nonwg(request):
groups = Group.objects.filter(type__features__acts_like_wg=True).exclude(state__in=['bof', 'conclude']).order_by("acronym")

View file

@ -1,13 +1,14 @@
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load cache %}
{% block title %}Non-Working Group email lists{% endblock %}
{% block content %}
{% origin %}
<h1>Non-Working Group email lists</h1>
{% cache 900 nonwglisttable %}
<table class="table table-condensed table-striped">
<thead>
<tr>
@ -24,4 +25,5 @@
{% endfor %}
</tbody>
</table>
{% endcache %}
{% endblock %}