forked from SpokaneTech/SpokaneTech_Py
-
Notifications
You must be signed in to change notification settings - Fork 0
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
40 changed files
with
477 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ on: | |
branches: | ||
- main | ||
paths: | ||
- '/docs/**' | ||
- 'docs/**' | ||
- 'mkdocs.yml' | ||
workflow_dispatch: | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
jobs: | ||
ruff: | ||
runs-on: ubuntu-latest | ||
name: Check Django | ||
steps: | ||
- name: "Checkout Repo" | ||
uses: actions/checkout@v4 | ||
- name: Check Django | ||
uses: dagger/dagger-for-github@v5 | ||
with: | ||
verb: call | ||
args: "linters check-django" | ||
version: "0.12.6" |
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,5 +1,17 @@ | ||
# Spokane Tech | ||
|
||
Home of [SpokaneTech.org](https://SpokaneTech.org), an online hub for Spokane's tech events and groups. It's not just a website; it's a community-driven, open-source initiative aimed at fostering learning and collaboration among aspiring and seasoned tech enthusiasts. | ||
Home of [SpokaneTech.org](https://SpokaneTech.org), an online hub for Spokane's | ||
tech events and groups. It's not just a website; it's a community-driven, | ||
open-source initiative aimed at fostering learning and collaboration among | ||
aspiring and seasoned tech enthusiasts. | ||
|
||
Interested in participating? Great! Read on... | ||
|
||
Here are a few things you can do to get started. | ||
|
||
- Go to the site and explore. It's live at [https://spokanetech.org](https://spokanetech.org). | ||
- Look through the [open issues](https://github.com/SpokaneTech/SpokaneTech_Py/issues) and find one that interests you (issues tagged "good first issue" could be great candidates). | ||
- [Read the docs](https://docs.spokanetech.org/)! In our documentation directory we have design decisions, style guide, contributing guide and more. Feel free to familiarize yourself with these. | ||
- Clone the repo to you machine and run locally, explore the code, break things, fix things, have fun. Step-by-step instructions are in the [CONTRIBUTION doc](https://docs.spokanetech.org/CONTRIBUTING/). | ||
- Have a feature idea or found a bug? Create an issue [here](https://github.com/SpokaneTech/SpokaneTech_Py/issues/new/choose) | ||
|
||
Please visit our [docs](https://spokanetech.github.io/SpokaneTech_Py/) to learn how to get started working on SpokaneTech_Py! |
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
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
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{% extends "allauth/layouts/base.html" %} | ||
{% load allauth %} | ||
{% block head_title %} | ||
Too Many Requests | ||
{% endblock head_title %} | ||
{% block content %} | ||
{% element h1 %} | ||
Too Many Requests | ||
{% endelement %} | ||
<p>You are sending too many requests. Please wait before trying again.</p> | ||
{% endblock content %} |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{% load allauth %} | ||
<div class="alert alert-xs {% if attrs.level == "error" %}alert-warning{% else %}alert-info{% endif %}"> | ||
{% slot message %} | ||
{% endslot %} | ||
</div> |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{% load allauth %} | ||
{% setvar variant %} | ||
{% if "warning" in attrs.tags %} | ||
warning | ||
{% elif "danger" in attrs.tags %} | ||
danger | ||
{% elif "secondary" in attrs.tags %} | ||
secondary | ||
{% elif "success" in attrs.tags %} | ||
success | ||
{% else %} | ||
primary | ||
{% endif %} | ||
{% endsetvar %} | ||
<span {% if attrs.title %}title="{{ attrs.title }}"{% endif %} | ||
class="badge text-bg-{{ variant }}"> | ||
{% slot %} | ||
{% endslot %} | ||
</span> |
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{% load allauth %} | ||
{% comment %} djlint:off {% endcomment %} | ||
<{% if attrs.href %}a href="{{ attrs.href }}"{% else %}button{% endif %} | ||
{% if attrs.form %}form="{{ attrs.form }}"{% endif %} | ||
{% if attrs.id %}id="{{ attrs.id }}"{% endif %} | ||
{% if attrs.name %}name="{{ attrs.name }}"{% endif %} | ||
{% if attrs.type %}type="{{ attrs.type }}"{% endif %} | ||
{% if attrs.value %}value="{{ attrs.value }}"{% endif %} | ||
class="{% block class %} | ||
btn | ||
{% if "link" in attrs.tags %}btn-link | ||
{% else %} | ||
{% if "prominent" in attrs.tags %}btn-lg{% elif "minor" in attrs.tags %}btn-sm{% endif %} | ||
btn-{% if 'outline' in attrs.tags %}outline-{% endif %}{% if "danger" in attrs.tags %}danger{% elif "secondary" in attrs.tags %}secondary{% elif "warning" in attrs.tags %}warning{% else %}primary{% endif %} | ||
{% endif %}{% endblock %}"> | ||
{% if "tool" in attrs.tags %} | ||
{% if "delete" in attrs.tags %} | ||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-trash" viewBox="0 0 16 16"> | ||
<path d="M5.5 5.5A.5.5 0 0 1 6 6v6a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5Zm2.5 0a.5.5 0 0 1 .5.5v6a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5Zm3 .5a.5.5 0 0 0-1 0v6a.5.5 0 0 0 1 0V6Z"/> | ||
<path d="M14.5 3a1 1 0 0 1-1 1H13v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V4h-.5a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1H6a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1h3.5a1 1 0 0 1 1 1v1ZM4.118 4 4 4.059V13a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4.059L11.882 4H4.118ZM2.5 3h11V2h-11v1Z"/> | ||
</svg> | ||
{% elif "edit" in attrs.tags %} | ||
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16"><path fill="currentColor" d="M12.854.146a.5.5 0 0 0-.707 0L10.5 1.793L14.207 5.5l1.647-1.646a.5.5 0 0 0 0-.708zm.646 6.061L9.793 2.5L3.293 9H3.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.207zm-7.468 7.468A.5.5 0 0 1 6 13.5V13h-.5a.5.5 0 0 1-.5-.5V12h-.5a.5.5 0 0 1-.5-.5V11h-.5a.5.5 0 0 1-.5-.5V10h-.5a.5.5 0 0 1-.175-.032l-.179.178a.5.5 0 0 0-.11.168l-2 5a.5.5 0 0 0 .65.65l5-2a.5.5 0 0 0 .168-.11z"/></svg> | ||
{% endif %} | ||
{% endif %} | ||
|
||
{% if not "tool" in attrs.tags %} | ||
{% slot %} | ||
{% endslot %} | ||
{% endif %} | ||
</{% if attrs.href %}a{% else %}button{% endif %}> |
Oops, something went wrong.