Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added core/static/core/images/CodingUnitedLogoNew.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 5 additions & 2 deletions core/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
{% tailwind_css %}

<!---Display logo in title-->
<link rel="icon" href="{% static 'core/images/coding_united_icon.png' %}" />
<link rel="icon" href="{% static 'core/images/CodingUnitedLogoNew.png' %}" />
{% block title %} {% endblock %}

<!-- HTMX -->
Expand All @@ -30,7 +30,7 @@
<a href="{% url 'home' %}">
<img
class="size-8 md:size-12 lg:size-16"
src="{% static 'core/images/coding_united_icon.png' %}"
src="{% static 'core/images/CodingUnitedLogoNew.png' %}"
alt="Coding United Logo"
/>
</a>
Expand All @@ -48,6 +48,8 @@ <h1 class="uppercase font-bold text-teal-500 text-xl md:text-4xl">
<a href="{% url 'contact' %}">Contact Us</a>
<span class="mx-3">|</span>
<a href="{% url 'session' %}">Meetings</a>
<span class="mx-3">|</span>
<a href="{% url 'faq' %}">FAQ</a>
</nav>
</header>
{%block content%}{%endblock%}
Expand All @@ -61,6 +63,7 @@ <h1 class="uppercase text-teal-400 text-3xl font-bold">Coding United Commons</h1
<a class="text-gray-200" href="{% url 'about' %}">About US</a>
<a class="text-gray-200" href="{% url 'contact' %}">Contact US</a>
<a class="text-gray-200" href="{% url 'session' %}">Meetings</a>
<a class="text-gray-200" href="{% url 'faq' %}">FAQ</a>
</div>
</footer>
</div>
Expand Down
113 changes: 113 additions & 0 deletions core/templates/core/faq.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
{%extends "base.html"%}
{% load static tailwind_tags %}

{%block title%}
<title>FAQ</title>
{%endblock%}

{%block content%}
<div class="card">
<details>
<summary class="text-black text-3xl font-bold mb-4">Do I Need Prior Coding Experience to Join?</summary>
<div class="content text-black text-2xl mb-4">
<p>No. You do not need to be an expert. However, this club is not a beginner tutorial series. You should be willing to learn by building, asking questions
and taking ownership of small tasks. Members at all levels participate, but everyone contributes to real projects.</p>
</div>
</details>
</div>
<div class="card">
<details>
<summary class="text-black text-3xl font-bold mb-4">Is this a Learning Club or a Project Club?</summary>
<div class="content text-black text-2xl mb-4">
<p>It is a project-first club. Learning happens through active development, not passive coursework. Tutorials, lectures, and crash courses exist only
to support ongoing project work.</p>
</div>
</details>
</div>
<div class="card">
<details>
<summary class="text-black text-3xl font-bold mb-4">What Kind of Projects Does the Club Work On?</summary>
<div class="content text-black text-2xl mb-4">
<p style="margin-bottom: 0.5em;">We focus on real, end-to-end systems, including:</p>
<ul class="list-disc list-inside">
<li>Games (Using engines like Godot)</li>
<li>Embedded and IoT Builds (Such as the Roku Remote Project)</li>
<li>Deterministic AI Systems (Logic- and Decision-Based, Not Hype-Driven)</li>
<li>Full-Stack Web Applications and Deployments (Using Django, Flask, React, TailwindCss)</li>
<li>Infrastructure and Homelab Projects (Optional)</li>
</ul>
<p style="margin-top: 0.5em;">Projects are selected base on workforce relevance, not trends.</p>
</div>
</details>
</div>
<div class="card">
<details>
<summary class="text-black text-3xl font-bold mb-4">Do You Use AI Tools in the Club?</summary>
<div class="content text-black text-2xl mb-4">
<p style="margin-bottom: 0.5em;">Yes. AI tools are part of modern software work, and we treat them as such.</p>
<p>Members are expected to use AI intentionally and responsibly, and to understand and explain the systems they build.
AI is a productivity tool, not a substitute for reasoning or fundamentals.</p>
</div>
</details>
</div>
<div class="card">
<details>
<summary class="text-black text-3xl font-bold mb-4">How is Progress Measured?</summary>
<div class="content text-black text-2xl mb-4">
<p style="margin-bottom: 0.5em;">Progress is measured by:</p>
<ul class="list-disc list-inside">
<li>Working Demos</li>
<li>Clear Explanations of System Designs</li>
<li>Documented Decisions and Tradeoffs</li>
<li>Team Contributions and Reliability</li>
</ul>
<p style="margin-top: 0.5em;">Certificates, course completion, or tool lists alone are not considered progress.</p>
</div>
</details>
</div>
<div class="card">
<details>
<summary class="text-black text-3xl font-bold mb-4">How Much Time Commitment is Expected?</summary>
<div class="content text-black text-2xl mb-4">
<p style="margin-bottom: 0.5em;">Time commitment varies by project, but consistency matters more than hours.</p>
<p>Members are expected to participate regularly, communicate claearly, and contribute meaningfully to their teams.</p>
</div>
</details>
</div>
<div class="card">
<details>
<summary class="text-black text-3xl font-bold mb-4">Are There Lectures or Classes?</summary>
<div class="content text-black text-2xl mb-4">
<p style="margin-bottom: 0.5em;">Yes, but they are supporting tools, not the main activity.</p>
<p>We host monthly lectures and crash courses, especially during breaks, and each one is tied directly to improving active projects.</p>
</div>
</details>
</div>
<div class="card">
<details>
<summary class="text-black text-3xl font-bold mb-4">Is This Club Only for People Pursuing Software Engineering Jobs?</summary>
<div class="content text-black text-2xl mb-4">
<p style="margin-bottom: 0.5em;">No, but the club is designed around real industry expectations.</p>
<p>Members interested in game development, embedded systems, infrastructure, automation, or applied AI will all find relevant work here.</p>
</div>
</details>
</div>
<div class="card">
<details>
<summary class="text-black text-3xl font-bold mb-4">What Makes Coding United Different from Other Coding Clubs?</summary>
<div class="content text-black text-2xl mb-4">
<p style="margin-bottom: 0.5em;">We operate like a small engineering studio, not a classroom.</p>
<p>Our focus is on delivery, ownership, AI-augmented workflows, and real proof of work-because that is what the modern tech industry expects.</p>
</div>
</details>
</div>
<div class="card">
<details>
<summary class="text-black text-3xl font-bold mb-4">How Do I Get Started?</summary>
<div class="content text-black text-2xl mb-4">
<p style="margin-bottom: 0.5em;">Join a project, introduce yourself, and start contributing.</p>
<p>You'll learn fastest by building, asking questions, and shipping small pieces consistently.</p>
</div>
</details>
</div>
{%endblock%}
4 changes: 3 additions & 1 deletion core/urls.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from django.urls import path

from .views import home, about, errorPage, contact, session
from .views import home, about, errorPage, contact, session, faq


urlpatterns = [
Expand All @@ -9,6 +9,8 @@

path('contact/', contact, name='contact'),
path('session/', session, name='session'),
path('faq/', faq, name='faq'),


]

Expand Down
4 changes: 4 additions & 0 deletions core/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ def about(request):
def session(request):
return render(request, 'core/session.html')

def faq(request):
return render(request, 'core/faq.html')


def contact(request):
if request.method == "POST":
fname = request.POST.get('fname')
Expand Down