Changeset eb1356d
- Timestamp:
- 05/02/12 16:33:41 (13 months ago)
- Branches:
- social
- Parents:
- 4afba25 (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)
- Files:
-
- 4 edited
-
telemeta/models/format.py (modified) (1 diff)
-
telemeta/views/base.py (modified) (1 diff)
-
example/sandbox_sqlite/settings.py (modified) (3 diffs)
-
telemeta/templates/telemeta/base.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, -
example/sandbox_sqlite/settings.py
re12b60a r0edb535 104 104 'django.contrib.messages.middleware.MessageMiddleware', 105 105 'django.middleware.locale.LocaleMiddleware', 106 'pagination.middleware.PaginationMiddleware', 107 'django.contrib.auth.backends.ModelBackend', 108 'socialregistration.contrib.facebook.auth.FacebookAuth', 106 109 ) 107 110 … … 127 130 'jsonrpc', 128 131 'south', 132 'postman', 133 'pagination', 134 'socialregistration', 135 'socialregistration.contrib.facebook', 129 136 'sorl.thumbnail', 130 137 ) … … 158 165 DEFAULT_FROM_EMAIL = 'webmaster@parisson.com' 159 166 167 POSTMAN_AUTO_MODERATE_AS=True 168 169 FACEBOOK_APP_ID = '348560078520326' 170 FACEBOOK_SECRET_KEY = 'f6204a5468be878bfce8f0007455c022' 171 FACEBOOK_REQUEST_PERMISSIONS = '' -
telemeta/templates/telemeta/base.html
r2c4c2e5b rb166a2e 64 64 <img src="{% url telemeta-images "logout.png" %}" alt="logout" style="vertical-align:middle" /></a> 65 65 {% else %} 66 <div style="float: left;"> 66 67 <a href="{% url telemeta-flatpage "help" %}">{% trans "Help" %}</a> | 67 <a href="{% url telemeta-login %}">{% trans "Sign in" %}</a> 68 <a href="{% url telemeta-login %}?next={{ request.path|urlencode }}">{% trans "Sign in" %}</a> 69 </div> 70 <div style="float: right;;"> 71 {% load facebook %} 72 {% facebook_button %} 73 </div> 68 74 {% endif %} 69 75 </div>
Note: See TracChangeset
for help on using the changeset viewer.
