Browse Source

Add cache for about view

Fix_strange_foreign_key_state
Maël Kervella 8 years ago
parent
commit
ce8fa57747
  1. 5
      re2o/views.py

5
re2o/views.py

@ -35,13 +35,17 @@ from reversion.models import Version
from django.contrib import messages
from django.conf import settings
from django.utils.translation import ugettext as _
from django.views.decorators.cache import cache_page
import git
import os
import time
from itertools import chain
from preferences.models import Service
from preferences.models import OptionalUser, GeneralOption, AssoOption
import users, preferences, cotisations, topologie, machines
from .utils import re2o_paginator
from .settings import BASE_DIR, INSTALLED_APPS, MIDDLEWARE_CLASSES
from .contributors import CONTRIBUTORS
@ -163,6 +167,7 @@ def history(request, application, object_name, object_id):
)
@cache_page(7 * 24 * 60 * 60)
def about_page(request):
option = AssoOption.objects.get()
git_info_contributors = CONTRIBUTORS

Loading…
Cancel
Save