-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added possibility to link external program pages
- Loading branch information
Giovanni Di Milia
committed
Jun 22, 2016
1 parent
75732f1
commit 886e3cb
Showing
3 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
cms/migrations/0012_programpage_external_program_page_url.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,20 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.9.7 on 2016-06-22 20:59 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('cms', '0011_programpage_title_over_image'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='programpage', | ||
name='external_program_page_url', | ||
field=models.URLField(blank=True, help_text='Use this field to directly link an external web page for this program.', null=True), | ||
), | ||
] |
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