diff --git a/lmfdb/app.py b/lmfdb/app.py index ba2984fe64..073616e0b3 100644 --- a/lmfdb/app.py +++ b/lmfdb/app.py @@ -308,7 +308,6 @@ def netloc_redirect(): return redirect(urlunparse(replaced), code=302) - def timestamp(): return '[%s UTC]' % time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime()) diff --git a/lmfdb/classical_modular_forms/web_space.py b/lmfdb/classical_modular_forms/web_space.py index d4ce6f9bdd..80434e0140 100644 --- a/lmfdb/classical_modular_forms/web_space.py +++ b/lmfdb/classical_modular_forms/web_space.py @@ -506,6 +506,7 @@ def __init__(self, level, weight): space['level'] = level space['conrey_index'] = char['first'] space['char_orbit_label'] = char['label'].split('.')[-1] + space['label'] = "%s.%s.%s"%(level,weight,space['char_orbit_label']) space['char_degree'] = char['degree'] space['dim'] = newspace_dims_by_label[char['label']] space['generate_link'] = (self.weight == 2) and (space['char_orbit_label'] != 'a') diff --git a/lmfdb/templates/base.html b/lmfdb/templates/base.html index 5484f4a9ae..3a66af9ba1 100644 --- a/lmfdb/templates/base.html +++ b/lmfdb/templates/base.html @@ -25,8 +25,11 @@ href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css" integrity="sha384-Nlo8b0yiGl7Dn+BgLn4mxhIIBU6We7aeeiulNCjHdUv/eKHx59s3anfSUjExbDxn" crossorigin="anonymous"> - - + + {% if not BETA %} + + + {% endif %} @@ -182,10 +185,10 @@ {%- if BETA -%} - {%- else -%} - - {%- endif -%} + {%- else -%} + + {%- endif -%} - {% block body -%}{%- endblock body %} - + {% block body -%}{%- endblock body %} +