-
Notifications
You must be signed in to change notification settings - Fork 33
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
add notebook number to list of exercises to check #371
base: master
Are you sure you want to change the base?
add notebook number to list of exercises to check #371
Conversation
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.
We have skipped reviewing this pull request. All of the files appear to be ones we're not sure how to review. We're working on it!
{%- if exercise['notebook'] %} | ||
<td>{{ exercise['notebook'] }}</td> | ||
{%- endif %} |
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.
Alignment:
{%- if exercise['notebook'] %} | |
<td>{{ exercise['notebook'] }}</td> | |
{%- endif %} | |
{%- if exercise['notebook'] %} | |
<td>{{ exercise['notebook'] }}</td> | |
{%- endif %} |
@@ -10,6 +10,7 @@ <h1>{{ _('Exercises operations room') }}</h1> | |||
<tr> | |||
<th scope="col">#</th> | |||
<th scope="col">{{ _('Name') }}</th> | |||
<th scope="col">{{ _('Notebook') }}</th> |
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.
We should check if any of the exercises has notebook before showing this column
No description provided.