-
Notifications
You must be signed in to change notification settings - Fork 45
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
contributors.html: Show images on contributors page #141
base: master
Are you sure you want to change the base?
Conversation
data/contrib_data.py
Outdated
@@ -27,9 +27,11 @@ def get_contrib_data(): | |||
def import_data(contributor): | |||
logger = logging.getLogger(__name__) | |||
login = contributor.get('login', None) | |||
image_url = 'https://avatars.githubusercontent.com/' + login |
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.
Broken link - unable to connect to https://avatars.githubusercontent.com/ (HTTP Error: 404)
Origin: InvalidLinkBear, Section: all.links
.
templates/contributors.html
Outdated
@@ -17,6 +17,7 @@ <h1>Details of all the contributors</h1> | |||
<div class="col-sm-6 col-md-4"> | |||
<div class="thumbnail"> | |||
<div class="caption"> | |||
<img src={{contributor.image_url}} alt="user profile"> |
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.
HTML Quotation Marks: Use only double quotes: Change the quotation mark to '"'.
Origin: HTMLLintBear, Section: html
.
data/contrib_data.py
Outdated
@@ -27,9 +27,12 @@ def get_contrib_data(): | |||
def import_data(contributor): | |||
logger = logging.getLogger(__name__) | |||
login = contributor.get('login', None) | |||
image_url = ('https://avatars.githubusercontent.com/' # Ignore InvalidLinkBear |
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.
E501 line too long (83 > 80 characters)
Origin: PycodestyleBear (E501), Section: all.python.default
.
data/contrib_data.py
Outdated
@@ -27,9 +27,12 @@ def get_contrib_data(): | |||
def import_data(contributor): | |||
logger = logging.getLogger(__name__) | |||
login = contributor.get('login', None) | |||
image_url = ('https://avatars.githubusercontent.com/' # Ignore InvalidLinkBear |
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.
Line is longer than allowed. (83 > 80)
Origin: LineLengthBear, Section: all.linelength
.
Travis tests have failedHey @sks444, 2nd Buildcoala --non-interactive -V
|
Travis tests have failedHey @sks444, 1st Build./.ci/build.sh
|
Hi @sks444 Please squash your commits 😇 . |
This enhancement commit displays the contributor image along with the information on the [community website](http://community.coala.io/contributors/). Closes coala#139 and coala#141
This enhancement commit displays the contributor image along with the information on the [community website](http://community.coala.io/contributors/). Closes coala#139 and Closes coala#141
This enhancement commit displays the contributor image along with the information on the [community website](http://community.coala.io/contributors/). Closes coala#139 and Closes coala#141
This enhancement commit displays the contributor image along with the information on the [community website](http://community.coala.io/contributors/). Closes coala#139, Closes coala#141
This enhancement commit displays the contributor image along with the information on the [community website](http://community.coala.io/contributors/). Closes coala#139, Closes coala#141
This enhancement commit displays the contributor image along with the information on the [community website](http://community.coala.io/contributors/). Closes coala#139, Closes coala#141
Closes #139