Skip to content

Commit

Permalink
feat(grace-hopper):add grace hopper sponsor list #5 (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
chenyuan99 authored Aug 15, 2023
1 parent 31cab2e commit 02ad2d3
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/offer_plus.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions company/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
urlpatterns = [
path('', views.display_companies, name='companies'),
path('view/<str:company_name>/', views.display_company, name='company-detail'),
path('grace-hopper', views.display_grace_hopper, name='grace-hopper'),
]
4 changes: 4 additions & 0 deletions company/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,7 @@ def display_company(request, company_name):
# 'myFilter': myFilter,
}
return render(request, 'company/company-detail.html', context)


def display_grace_hopper(request):
return render(request, 'company/grace-hopper.html')
35 changes: 35 additions & 0 deletions templates/company/grace-hopper.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{% extends "base.html" %}
{% load static %}
{% block content %}
<!-- </nav> -->
<div class="container ">
<div class="row">
<div class="col-md-12">
<a href="{% url 'add-application' %}" class="btn btn-outline-primary">Add New Record</a>
<a href="{% url 'hardware' %}" class="btn btn-outline-info">Hardware Jobs</a>
<a href="https://icc.fyi" class="btn btn-outline-info">IT Consulting Jobs</a>
</div>
</div>
<div class="container">
<div class="jumbotron container text-center">
<div class="clear"></div>
<h1>Grace Hopper Conference Sponsors 2023</h1>

</div>
<a class="btn btn-outline-primary"
href=" https://docs.google.com/spreadsheets/d/1GiaXXATvIwexrNOyqmil6RQ96ACjrICuxPcJu3IySP4/edit#gid=0">
Contribute to the list</a>
</a>
<iframe class="airtable-embed"
src="https://airtable.com/embed/appjTKJgYJLXQ9W8J/shrtHFqVFCNZacp6m?backgroundColor=red&viewControls=on"
frameborder="0" onmousewheel="" width="100%" height="533"
style="background: transparent; border: 1px solid #ccc;"></iframe>

</div>
</div>
<br>
<br>
<br>


{% endblock %}

0 comments on commit 02ad2d3

Please sign in to comment.