-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
20 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
{% load bootstrap5 %} | ||
{% load humanize %} | ||
{% load static %} | ||
<!DOCTYPE html> | ||
|
@@ -17,26 +16,26 @@ | |
<meta property="og:url" content="{% block meta_url %}{% url "index" %}{% endblock meta_url %}"> | ||
<meta property="og:image" content="{% block meta_image %}{% static "images/cropped_ishar_logo_dark.png" %}{% endblock meta_image %}"> | ||
<title>{% block title %}Welcome{% endblock title %} - Ishar MUD</title> | ||
{% bootstrap_css %} | ||
{% bootstrap_javascript %} | ||
<link rel="stylesheet" type="text/css" href="{% static "style.css" %}"> | ||
<link rel="shortcut icon" href="{% static "images/favicon.ico" %}" type="image/x-icon"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous"> | ||
<link rel="stylesheet" type="text/css" href="{% static "style.css" %}"> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script> | ||
{% endblock head %} | ||
{% block scripts %} | ||
{% endblock scripts %} | ||
</head> | ||
<body> | ||
<nav class="card-group navbar navbar-expand-lg container-fluid"> | ||
<nav class="card-group navbar navbar-dark navbar-expand-lg container-fluid"> | ||
<div class="card bg-dark"> | ||
<h1 class="card-header"> | ||
<a href="{% url "index" %}" title="Ishar MUD"> | ||
<button class="navbar-toggler navbar-dark" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
<a class="collapse navbar-collapse" href="{% url "index" %}" title="Ishar MUD"> | ||
<img class="navbar-brand" id="logo" alt="Ishar MUD" src="{% static "images/header_alpha.png" %}" style="width: 20rem;"> | ||
</a> | ||
</h1> | ||
<div class="card-body"> | ||
<button class="navbar-toggler navbar-dark" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
<div class="collapse bg-dark navbar-collapse" id="navbarNavDropdown"> | ||
<ul class="navbar-nav bg-dark"> | ||
{% if user.is_staff %} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
asgiref==3.7.2 | ||
beautifulsoup4==4.12.2 | ||
Django==4.2.6 | ||
django-bootstrap-v5==1.0.11 | ||
django-filter==23.3 | ||
djangorestframework==3.14.0 | ||
gunicorn==21.2.0 | ||
packaging==23.2 | ||
passlib==1.7.4 | ||
PyMySQL==1.1.0 | ||
pytz==2023.3.post1 | ||
soupsieve==2.5 | ||
sqlparse==0.4.4 | ||
typing_extensions==4.8.0 |