diff options
author | luxagraf <sng@luxagraf.net> | 2015-12-13 08:37:55 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2015-12-13 08:37:55 -0500 |
commit | e3887521d2f00287f4c30c8a0c43b84125414d6f (patch) | |
tree | fcae9ae0db5b9c414ce09fe4d760983ecaf055a8 /app/resume | |
parent | 2bc926fe3537363f6f5e6883d927120b8ada41da (diff) |
added template tags to get get image url and re-wrote gallery template
to use new syntax. also added some migrations.
Diffstat (limited to 'app/resume')
-rw-r--r-- | app/resume/migrations/0003_auto_20151211_1925.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/resume/migrations/0003_auto_20151211_1925.py b/app/resume/migrations/0003_auto_20151211_1925.py new file mode 100644 index 0000000..77e3049 --- /dev/null +++ b/app/resume/migrations/0003_auto_20151211_1925.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9 on 2015-12-11 19:25 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('resume', '0002_auto_20151207_2105'), + ] + + operations = [ + migrations.AlterModelOptions( + name='publisher', + options={'ordering': ('order',)}, + ), + ] |