-
-
Notifications
You must be signed in to change notification settings - Fork 775
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 looking for a team option to projects form #6348
Merged
Merged
Changes from 3 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
699d6d8
Add option to looking for team members
zoek1 21c3231
Add banner for hackathons
zoek1 e4e1475
Restored commented chat functionality on hackathon projects
zoek1 9c7a37f
Merge branch 'master' into feature/looking-team
danlipert 9a8cc8f
Merge branch 'master' into feature/looking-team
danlipert 4984c4f
Squash migrations on dashboard
zoek1 bdb9bf2
Merge branch 'master' into feature/looking-team
zoek1 6e34c7c
Remove discord from project form
zoek1 8b00a89
Merge branch 'feature/looking-team' of https://github.com/zoek1/web-1…
zoek1 8f17135
Merge branch 'master' into feature/looking-team
danlipert File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Generated by Django 2.2.4 on 2020-03-31 23:25 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('dashboard', '0095_hackathonevent_visible'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='hackathonproject', | ||
name='looking_members', | ||
field=models.BooleanField(default=False), | ||
), | ||
migrations.AddField( | ||
model_name='hackathonproject', | ||
name='message', | ||
field=models.CharField(blank=True, default='', max_length=150), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 2.2.4 on 2020-04-01 00:20 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('dashboard', '0095_hackathonevent_visible'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='hackathonevent', | ||
name='banner', | ||
field=models.ImageField(blank=True, null=True, upload_to=''), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I'm wondering if this limit is too short, what do you think?
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.
i think is ok for a short message, originally the tweets have a length of 140 characters and worked well. One example could be:
Hi! I'm python developer and I'm looking for a fronted partner to hack on the ETC bounty "Create A DIY Hardware Wallet Using Signatory"
150 character limit will help to synthesize messages, and having a character count helper will help a lot the user. What do you think @PixelantDesign?