Skip to content

Commit fe3989f

Browse files
authored
Merge pull request #45 from kmAyush/testing
Testing
2 parents fb1bb02 + f6c0a31 commit fe3989f

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

website/forum/templates/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ <h3>Contacts</h3>
143143
</dl>
144144
<dl class="contact-list">
145145
<dt>Email:</dt>
146-
<dd><a href="mailto:recursionnitd@gmail.com">recursionnitd[AT]gmail[dot]com</a></dd>
146+
<dd><a href="mailto:recursion.nit@gmail.com">recursion[dot]nit[AT]gmail[dot]com</a></dd>
147147
</dl>
148148
<dl class="contact-list">
149149
<dt>Phones:</dt>

website/forum/templates/getting_started.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ <h1>How To Get Started</h1>
1111
<blockquote class="blockquote text-center" style="">"The secret of getting ahead is getting started"<br></blockquote>
1212
<p>Competitive Programming is an interesting activity which mixes problem-solving with programming. It is not only enjoyable but also very demanded in placements. Competitive programming will make you very good at writing efficient programs quickly. If you get really serious about competitive programming, it will make you an expert in data structures and algorithms.</p>
1313
<hr>
14-
<h2>So how to get started?</h2>
14+
<h2>So how to get started?</h2><br>
1515
<h3>Learn a programming language</h3>
1616
<p>Any programming language will do. But most problems are set with C/C++ and Java programmers in mind, so knowing any one of them will be really helpful. You don't need to know really advanced concepts, like classes or generics/templates. You should just know if/else, loops, arrays, functions and have some familiarity with the standard library, like math functions, string/array operations and input/output. If you know only C, you can easily start. But at some point in time (especially when you reach advanced stages), you'll need features which most languages have but C does not. Learning C++ is very easy if you know C. I'll suggest that you start out with C and learn C++ in parallel with competitive programming. Even if you are not confident of your skills in a programming language, you can (and should) still start. Competitive programming is also a good way to practice a new language you have learned.</p><br>
1717

website/forum/templates/home.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ <h5 class="subtitle" style="color:#528CDD;">Programming Community of NIT Durgapu
113113
</div>
114114
<div class="col-sm-4 col-lg-4 ml-2 ntp">
115115
<strong>New to programming?</strong><br>
116-
<button class="btn btn-sm btn-outline-success mt-2">Get Started</button>
116+
<a href="{% url 'forum:getting_started' %}"><button class="btn btn-sm btn-outline-success mt-2">Get Started</button></a>
117117
</div>
118118
</div>
119119

website/forum/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -864,7 +864,7 @@ def search_question(request, key):
864864
if request.is_ajax():
865865
return HttpResponse('')
866866
questions_list = paginator.page(paginator.num_pages)
867-
profiles = Profile.objects.all()
867+
profiles = Profile.objects.all()
868868
args = {'form_search':search, 'profile': profiles, 'questions': questions_list, 'answers': answers, 'follows': follows,
869869
'tags': tags_recent, 'taggings': taggings_recent, 'tags_recent': tags_recent_record,
870870
'tags_popular': tags_popular_record, 'q_count': q_count}

0 commit comments

Comments
 (0)