-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Apiresult #103
base: master
Are you sure you want to change the base?
Apiresult #103
Changes from 2 commits
653fcea
7416400
690af05
52ce18d
d1a606f
e520415
ad3652a
fe37e1d
b261203
c6ec94e
821fa93
fafb8e6
ea31339
bd2775a
3d8f549
5d18111
8735673
88e9b75
0b9ca47
4ef47ae
2d5268e
a468e8c
11073e0
35654d7
64ae524
eef4a41
1209bac
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,4 @@ smmap2==2.0.3 | |
urllib3==1.22 | ||
pep8==1.7.1 | ||
python-decouple==3.1 | ||
stackapi |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,6 +50,31 @@ <h4 class="card-title"> | |
aria-haspopup="true" aria-expanded="false"> | ||
Solutions | ||
</button> | ||
<div> | ||
<div > | ||
<ul class="sol_tab nav nav-tabs"> | ||
<li class="active"> | ||
<a href= "#tab1default" style="color: #1b1e21" data-toggle="tab"> | ||
<img src="../static/images/wikipedia.png"/> | ||
</a> | ||
</li> | ||
<li> | ||
<a href="#tab2default" style="color: #1b1e21" data-toggle="tab"><img src="../static/images/stack-overflow.png"/></a> | ||
</li> | ||
</ul> | ||
|
||
</div> | ||
<div class="tab-content"> | ||
<div class="tab-pane fade in active" id="tab1default"> | ||
<p><a href="{{ res_wiki.url }}" target="blank"/>{{ res_wiki.heading }}</p> | ||
</div> | ||
<div class="tab-pane fade" id="tab2default"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The ids of those dropdown need be difference. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Will you please tell about which dropdown you are talking, because as of now there is no dropdown in that script. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry, what I want to say is |
||
{% for x in res_stack %} | ||
<p><a href="{{ x.url }}" target="blank"/>{{ x.title }}</p> | ||
{% endfor %} | ||
</div> | ||
|
||
</div> | ||
<div class="dropdown-menu" aria-labelledby="soln"> | ||
{% for file in entry.files %} | ||
<a href="https://github.com/OpenGenus/cosmos/blob/master/code/{{ entry.path }}/{{ file }}" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please check indentations.