-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
djangocms_highlightjs/migrations/0002_auto_20160409_1853.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.3 on 2016-04-09 16:53 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('djangocms_highlightjs', '0001_initial'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='highlighttext', | ||
name='theme', | ||
field=models.CharField(choices=[('arta', 'Arta'), ('ascetic', 'Ascetic'), ('atelier-dune.dark', 'Atelier Dune - Dark'), ('atelier-dune.light', 'Atelier Dune - Light'), ('atelier-forest.dark', 'Atelier forest - Dark'), ('atelier-forest.light', 'Atelier forest - Light'), ('atelier-heath.dark', 'Atelier heath - Dark'), ('atelier-heath.light', 'Atelier heath - Light'), ('atelier-lakeside.dark', 'Atelier lakeside - Dark'), ('atelier-lakeside.light', 'Atelier lakeside - Light'), ('atelier-seaside.dark', 'Atelier seaside - Dark'), ('atelier-seaside.light', 'Atelier seaside - Light'), ('brown_paper', 'Brown Paper'), ('dark', 'Dark'), ('default', 'Default'), ('docco', 'Docco'), ('far', 'Far'), ('foundation', 'Foundation'), ('github', 'Github'), ('googlecode', 'GoogleCode'), ('idea', 'IDEA'), ('ir_black', 'Ir black'), ('magula', 'Magula'), ('mono-blue', 'Mono Blue'), ('monokai', 'Monokai'), ('monokai_sublime', 'Monokai sublime'), ('obsidian', 'Obsidian'), ('paraiso.dark', 'Paraiso - Dark'), ('paraiso.light', 'éaraiso - Light'), ('pojoaque', 'Pojoaque'), ('railscasts', 'RailsCasts'), ('rainbow', 'Rainbow'), ('school_book', 'School Book'), ('solarized_dark', 'Solarized - Dark'), ('solarized_light', 'Solarized - Light'), ('sunburst', 'Sunburst'), ('tomorrow', 'Tomorrow'), ('tomorrow-night', 'Tomorrow night'), ('tomorrow-night-blue', 'Tomorrow night - Blug'), ('tomorrow-night-bright', 'Tomorrow night - Bright'), ('tomorrow-night-eighties', 'Tomorrow night - Eighties'), ('vs', 'VS'), ('xcode', 'XCode'), ('zenburn', 'Zenburn')], max_length=100, verbose_name='Rendering theme'), | ||
), | ||
] |