25 lines
777 B
HTML
25 lines
777 B
HTML
<!DOCTYPE html>
|
|
<html lang="en-ZA">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<title>Atlantic Athletic Club Results</title>
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}" />
|
|
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
|
|
</head>
|
|
{%- set ns.start = getstart -%}
|
|
{%- set ns.show = getshow -%}
|
|
|
|
{# Reset arguments, so as not to display standard arguments in the query part of the URL #}
|
|
{%- set ns.query = request.args | cleandict -%}
|
|
{%- if ns.start == 0 -%}
|
|
{%- set ns.start = None -%}
|
|
{%- endif -%}
|
|
|
|
{%- if ns.show == 0 or ns.show == PAGE_SIZE -%}
|
|
{%- set ns.show = None -%}
|
|
{%- endif -%}
|
|
|
|
<body>
|
|
{% include 'tabs.html' with context -%}
|