Changeset 7566b3e
- Timestamp:
- 05/02/12 16:33:41 (14 months ago)
- Branches:
- security
- Parents:
- 01772af (diff), 57305a5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - git-author:
- yomguy <yomguy@…> (05/02/12 16:33:41)
- git-committer:
- yomguy <yomguy@…> (05/02/12 16:33:41)
- Location:
- telemeta
- Files:
-
- 2 added
- 5 edited
-
models/format.py (modified) (1 diff)
-
views/base.py (modified) (1 diff)
-
admin.py (modified) (1 diff)
-
middleware.py (added)
-
migrations/0009_auto__add_field_userprofile_last_session_key.py (added)
-
models/system.py (modified) (2 diffs)
-
templates/telemeta/inc/collection_related.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
telemeta/models/format.py
rc8cdfbe r57305a5 83 83 84 84 def __unicode__(self): 85 return self.original_ code85 return self.original_format 86 86 87 87 @property -
telemeta/views/base.py
r03ca023 r57305a5 660 660 last_revision = None 661 661 662 physical_format = item.original_format .original_format662 physical_format = item.original_format 663 663 664 664 return render(request, template, -
telemeta/admin.py
rbfa68c2 rf83d820 6 6 from telemeta.models.system import * 7 7 from django.contrib import admin 8 <<<<<<< HEAD 9 from django.forms import CheckboxSelectMultiple 10 ======= 11 >>>>>>> master 8 12 from django.contrib.auth.models import User 9 13 from django.contrib.auth.admin import UserAdmin -
telemeta/models/system.py
rfad4d14 r0f7c20f 42 42 import django.db.models as models 43 43 from django.forms import ModelForm 44 from django.contrib.sessions.models import Session 44 45 45 46 … … 90 91 telephone = CharField(_('Telephone')) 91 92 expiration_date = DateField(_('Expiration_date')) 93 last_session_key = CharField(blank=True, null=True, max_length=40) 92 94 93 95 class Meta(MetaCore): -
telemeta/templates/telemeta/inc/collection_related.html
r28fa06b r5a09eb7 78 78 {% endif %} 79 79 {% endif %} 80 {% endif %}80 {% endif %} 81 81 </td> 82 82 </tr>
Note: See TracChangeset
for help on using the changeset viewer.
