-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added Model for SIGs * Added model for SIGs * Modified SIG Model and configured django-admin for it and made basic sig.html * Added changes and modifies sig.html * Modified minor changes and styling changed * Added hrefs for SIGs * Modified minor changes and styling changed and urls modified to avoid breaking * removed learn more button * Added Model for SIGs * Modified SIG Model and configured django-admin for it and made basic sig.html * Added changes and modifies sig.html * Modified minor changes and styling changed * Added hrefs for SIGs * Modified minor changes and styling changed and urls modified to avoid breaking * removed learn more button * PR cleanup * Final Set of All Changes for Sig pages with all necessary additions and code fixes * Fixed models, added slug field and refined migration files * Commit so that db gets added * Added minor fixes * Minor changes * Added SIG Links in footer and added config_db dump * Modified Navbar and it's various components accordingly * Minor Changes Resolving sizes and optimisation * Modified SIGs data * Modified config_db file to proper json format * Added Diode content and fixed sig pages display issues * Added Impulse to Navbar * Small Changes * made navbar responsive and resolved sig pages UI Changes * fixed 0004_migration file repititive code * fixed sig logo issues and fixed small navbar * Update corpus/templates/pages/sig.html --------- Co-authored-by: Anirudh Prabhakaran <[email protected]> Co-authored-by: Nishant Nayak <[email protected]>
- Loading branch information
1 parent
ff2b471
commit fc68385
Showing
12 changed files
with
285 additions
and
38 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,9 +1,9 @@ | ||
from django.urls import path | ||
|
||
from .views import about_us | ||
from .views import index | ||
from . import views | ||
|
||
urlpatterns = [ | ||
path("", index, name="index"), | ||
path("about_us/", about_us, name="about_us"), | ||
path("", views.index, name="index"), | ||
path("about_us/", views.about_us, name="about_us"), | ||
path("sig/<str:sig_name>/", views.sig, name="sig"), | ||
] |
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,23 +1,39 @@ | ||
<ul class="mx-2"> | ||
<li class="text-xl font-bold text-white my-2">General</li> | ||
<li class="text-lg font-bold text-white my-2">General</li> | ||
<li><a href="{% url 'index' %}">Home</a></li> | ||
<li><a href="{% url 'about_us' %}">About Us</a></li> | ||
<li><a href="https://ieee-nitk.github.io/blog/">Blog</a></li> | ||
<li><a href="https://ieee-nitk.github.io/gyan/">Gyan</a></li> | ||
<li><a href="https://ieee-nitk.github.io/virtual-expo/">Virtual Expo</a></li> | ||
</ul> | ||
|
||
<ul class="mx-2"> | ||
<li class="text-xl font-bold text-white my-2">Embedathon</li> | ||
<li class="text-lg font-bold text-white my-2">SIGs</li> | ||
<li><a href="{% url 'sig' sig_name='compsoc' %}">CompSoc</a></li> | ||
<li><a href="{% url 'sig' sig_name='diode' %}">Diode</a></li> | ||
<li><a href="{% url 'sig' sig_name='piston' %}">Piston</a></li> | ||
</ul> | ||
|
||
<ul class="mx-2"> | ||
<li class="text-lg font-bold text-white my-2">Affinity Groups</li> | ||
<li><a href="{% url 'sig' sig_name='wie' %}">WiE</a></li> | ||
<li><a href="{% url 'sig' sig_name='sight' %}">SIGHT</a></li> | ||
</ul> | ||
|
||
<ul class="mx-2"> | ||
<li class="text-lg font-bold text-white my-2">Embedathon</li> | ||
<li><a href="{% url 'embedathon_home' %}">Home</a></li> | ||
<li><a href="{% url 'embedathon_index' %}">Dashboard</a></li> | ||
</ul> | ||
|
||
<ul class="mx-2"> | ||
<li class="text-xl font-bold text-white my-2">Impulse</li> | ||
<li class="text-lg font-bold text-white my-2">Impulse</li> | ||
<li><a href="{% url 'impulse_home' %}">Home</a></li> | ||
<li><a href="{% url 'impulse_index' %}">Dashboard</a></li> | ||
</ul> | ||
|
||
<ul class="mx-2"> | ||
<li class="text-xl font-bold text-white my-2">Electrika</li> | ||
<li class="text-lg font-bold text-white my-2">Electrika</li> | ||
<li><a href="{% url 'electrika_home' %}">Home</a></li> | ||
<li><a href="{% url 'electrika_index' %}">Dashboard</a></li> | ||
</ul> |
Oops, something went wrong.