-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Update social icons for ietf website (#363)
- Loading branch information
Showing
4 changed files
with
85 additions
and
19 deletions.
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
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
38 changes: 38 additions & 0 deletions
38
ietf/utils/migrations/0008_socialmediasettings_github_and_more.py
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,38 @@ | ||
# Generated by Django 4.2.7 on 2023-12-14 09:20 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('utils', '0007_auto_20230524_0551'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='socialmediasettings', | ||
name='github', | ||
field=models.CharField(blank='True', help_text='Link to GitHub profile', max_length=255, verbose_name='GitHub link'), | ||
), | ||
migrations.AlterField( | ||
model_name='socialmediasettings', | ||
name='linkedin', | ||
field=models.CharField(blank='True', help_text='Link to LinkedIn profile', max_length=255, verbose_name='LinkedIn link'), | ||
), | ||
migrations.AlterField( | ||
model_name='socialmediasettings', | ||
name='mastodon', | ||
field=models.CharField(blank='True', help_text='Link to Mastodon profile', max_length=255, verbose_name='Mastodon link'), | ||
), | ||
migrations.AlterField( | ||
model_name='socialmediasettings', | ||
name='twitter', | ||
field=models.CharField(blank='True', help_text='Link to Twitter profile', max_length=255, verbose_name='Twitter link'), | ||
), | ||
migrations.AlterField( | ||
model_name='socialmediasettings', | ||
name='youtube', | ||
field=models.CharField(blank='True', help_text='Link to YouTube account', max_length=255, verbose_name='Youtube link'), | ||
), | ||
] |
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