|
| 1 | +{% load static %} |
| 2 | + |
| 3 | +<!DOCTYPE html> |
| 4 | +<html lang="en"> |
| 5 | + |
| 6 | +<head> |
| 7 | + <!-- Google tag (gtag.js) --> |
| 8 | + <script async src="https://www.googletagmanager.com/gtag/js?id=G-X6VK8H1VLF"></script> |
| 9 | + <script> |
| 10 | + window.dataLayer = window.dataLayer || []; |
| 11 | + function gtag(){dataLayer.push(arguments);} |
| 12 | + gtag('js', new Date()); |
| 13 | + |
| 14 | + gtag('config', 'G-X6VK8H1VLF'); |
| 15 | + </script> |
| 16 | + <meta charset="UTF-8"> |
| 17 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 18 | + <meta name="description" |
| 19 | + content="Spokane's premiere local Python user group. Join us for meetups, workshops, and community events to learn and grow in Python programming."> |
| 20 | + <meta name="keywords" content="spokane, spokanetech, python, coding, software, developers, tech, technology"> |
| 21 | + <meta property="og:title" content="Spokane Python User Group"> |
| 22 | + <meta property="og:description" |
| 23 | + content="Spokane's premiere local Python user group. Join us for meetups, workshops, and community events to learn and grow in Python programming."> |
| 24 | + <meta name="robots" content="noindex, nofollow"> |
| 25 | + <link rel="icon" type="image/png" sizes="16x16" href="{% static 'spokanepython/img/favicon.png' %}"> |
| 26 | + |
| 27 | + <title>Spokane Python User Group</title> |
| 28 | + <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"> |
| 29 | + <link rel="stylesheet" href="{% static 'spokanepython/css/spug.css' %}"> |
| 30 | + |
| 31 | +</head> |
| 32 | + |
| 33 | +<body> |
| 34 | + <section id="hero" class="p-5 d-flex justify-content-center" style="min-height: 100vh; background: linear-gradient(135deg, #3776AB 0%, #103069 100%);"> |
| 35 | + <div class="container text-center p-2"> |
| 36 | + <h1 class="display-3 text-white fw-bold"><span class="text-warning"><i class="fa-brands fa-python me-2"></i></span></h1> |
| 37 | + <h1 class="display-3 text-warning fw-bold"><span class="">Spokane Python User Group</span></h1> |
| 38 | + <!-- <h3 class="fw-bold text-warning py-3">Host Information</h3> --> |
| 39 | + <p class="my-4 lead fw-bold text-white">This page provides information about the host system running this application.</p> |
| 40 | + <div class="my-5"> |
| 41 | + <div class="row mb-4"> |
| 42 | + <span class="text-warning fw-bold">Start Time:</span> |
| 43 | + <span class="text-light">{{ HH_STARTTIME }}</span> |
| 44 | + </div> |
| 45 | + <div class="row mb-4"> |
| 46 | + <span class="text-warning fw-bold">Version</span> |
| 47 | + <span class="text-light">{{ PROJECT_VERSION }}</span> |
| 48 | + </div> |
| 49 | + <div class="row mb-4"> |
| 50 | + <span class="text-warning fw-bold">Python Version:</span> |
| 51 | + <span class="text-light">{{ python_version }}</span> |
| 52 | + </div> |
| 53 | + <div class="row mb-4"> |
| 54 | + <span class="text-warning fw-bold">Django Version:</span> |
| 55 | + <span class="text-light">{{ django_version }}</span> |
| 56 | + </div> |
| 57 | + <div class="row mb-4"> |
| 58 | + <span class="text-warning fw-bold">Hostname:</span> |
| 59 | + <span class="text-light">{{ hostname }}</span> |
| 60 | + </div> |
| 61 | + <div class="row mb-4"> |
| 62 | + <span class="text-warning fw-bold">Source Code:</span> |
| 63 | + <span class="text-light"><a href="{{ source_code }}" target="_blank" class="text-light">{{ source_code }}</a></span> |
| 64 | + </div> |
| 65 | + <div class="row mb-4"> |
| 66 | + <span class="text-warning fw-bold">Client IP Address:</span> |
| 67 | + <span class="text-light">{{ remote_ip_address }}</span> |
| 68 | + </div> |
| 69 | + <div class="row mb-4"> |
| 70 | + <span class="text-warning fw-bold">Client User Agent:</span> |
| 71 | + <span class="text-light">{{ user_agent }}</span> |
| 72 | + </div> |
| 73 | + </div> |
| 74 | + </div> |
| 75 | + </section> |
| 76 | +</body> |
| 77 | +</html> |
0 commit comments