File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,9 +15,6 @@ def groups(request):
1515
1616 return render (request , "mailinglists/group_archives.html" , { "groups" : groups } )
1717
18- # we run the import_mailman_listinfo command via cron once per hour; we can
19- # safely cache this for some time.
20- @cache_page (15 * 60 )
2118def nonwg (request ):
2219 groups = Group .objects .filter (type__features__acts_like_wg = True ).exclude (state__in = ['bof' , 'conclude' ]).order_by ("acronym" )
2320
Original file line number Diff line number Diff line change 11{% extends "base.html" %}
22{# Copyright The IETF Trust 2015, All Rights Reserved #}
33{% load origin %}
4-
4+ {% load cache %}
55{% block title %}Non-Working Group email lists{% endblock %}
66
77{% block content %}
88 {% origin %}
99 < h1 > Non-Working Group email lists</ h1 >
1010
11+ {% cache 900 nonwglisttable %}
1112 < table class ="table table-condensed table-striped ">
1213 < thead >
1314 < tr >
@@ -24,4 +25,5 @@ <h1>Non-Working Group email lists</h1>
2425 {% endfor %}
2526 </ tbody >
2627 </ table >
28+ {% endcache %}
2729{% endblock %}
You can’t perform that action at this time.
0 commit comments