File tree Expand file tree Collapse file tree 6 files changed +8
-8
lines changed Expand file tree Collapse file tree 6 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,6 @@ <h2 class="title is-4">PyWeek</h2>
121
121
{% endblock %}
122
122
123
123
{% block sidebar %}
124
- {% include "events/sidebar/upcoming -event.html" %}
124
+ {% include "events/sidebar/ongoing -event.html" %}
125
125
{% include "events/sidebar/events-list.html" %}
126
126
{% endblock %}
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ <h2 class="title is-4" id="how-experienced-do-i-need-to-be-to-join-a-code-jam">
66
66
{% endblock %}
67
67
68
68
{% block sidebar %}
69
- {% include "events/sidebar/code-jams/upcoming -code-jam.html" %}
69
+ {% include "events/sidebar/code-jams/ongoing -code-jam.html" %}
70
70
{% include "events/sidebar/code-jams/previous-code-jams.html" %}
71
71
{% include "events/sidebar/code-jams/useful-information.html" %}
72
72
{% endblock %}
Original file line number Diff line number Diff line change @@ -91,15 +91,15 @@ <h3>Naming</h3>
91
91
92
92
def my_function():
93
93
my_variable = "value"</ code > </ pre >
94
- < p > Class and type variable names should use the camel case style.</ p >
94
+ < p > Class and type variable names should use the PascalCase style.</ p >
95
95
< pre > < code class ="language-python "> from typing import List
96
96
97
97
98
98
class MyClass:
99
99
pass
100
100
101
101
ListOfMyClass = List[MyClass]</ code > </ pre >
102
- < p > Constant names should be all uppercase, and words should be separated with underscores .</ p >
102
+ < p > Constant names should use the SCREAMING_SNAKE_CASE style .</ p >
103
103
< pre > < code class ="language-python "> MY_CONSTANT = 1</ code > </ pre >
104
104
< p >
105
105
You should avoid single-character names, as these might be confusing.
Original file line number Diff line number Diff line change 1
1
{% load static %}
2
2
3
3
< div class ="box ">
4
- < h4 class ="menu-label "> Upcoming Code Jam</ h4 >
4
+ < h4 class ="menu-label "> Ongoing Code Jam</ h4 >
5
5
< a href ="{% url "events:page " path="code-jams/8 " %} ">
6
6
< img src ="{% static "images /events/summer_code_jam_2021/banner.png" %}" alt="Summer Code Jam 2021 ">
7
7
</ a >
Original file line number Diff line number Diff line change 1
1
{% load static %}
2
2
3
3
< div class ="box ">
4
- < p class ="menu-label "> Upcoming Event</ p >
4
+ < p class ="menu-label "> Ongoing Event</ p >
5
5
< a href ="{% url "events:page " path="code-jams/8 " %} ">
6
6
< img src ="{% static "images /events/summer_code_jam_2021/banner.png" %}" alt="Summer Code Jam 2021 ">
7
7
</ a >
Original file line number Diff line number Diff line change 12
12
<!-- Mobile-only Notice -->
13
13
< section id ="mobile-notice " class ="message is-primary is-hidden-tablet ">
14
14
< a href ="/events/code-jams/8/ ">
15
- < img src ="{% static "images /events/summer_code_jam_2021/front_page_banners/sign_up_now .png" %}" alt="Summer Code Jam 2021 ">
15
+ < img src ="{% static "images /events/summer_code_jam_2021/front_page_banners/currently_live .png" %}" alt="Summer Code Jam 2021 ">
16
16
</ a >
17
17
</ section >
18
18
48
48
{# Code Jam banner #}
49
49
< div id ="wave-hero-right " class ="column is-half ">
50
50
< a href ="/events/code-jams/8/ ">
51
- < img src ="{% static "images /events/summer_code_jam_2021/front_page_banners/sign_up_now .png" %}" alt="Summer Code Jam 2021 ">
51
+ < img src ="{% static "images /events/summer_code_jam_2021/front_page_banners/currently_live .png" %}" alt="Summer Code Jam 2021 ">
52
52
</ a >
53
53
</ div >
54
54
</ div >
You can’t perform that action at this time.
0 commit comments