Changeset 3191b1b
- Timestamp:
- 03/27/12 17:45:14 (14 months ago)
- Branches:
- social
- Children:
- 513697b
- Parents:
- da3dd5d (diff), c02171b (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@…> (03/27/12 17:45:14)
- git-committer:
- yomguy <yomguy@…> (03/27/12 17:45:14)
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
telemeta/templates/telemeta/mediaitem_edit.html
rea5ec32 rc02171b 45 45 <a href="{% url telemeta-item-related_edit item.public_id %}" class="component_icon button icon_edit">{% trans "Edit"%} {% trans "related media"%}</a> 46 46 {% endif %} 47 <a href="#" class="component_icon button icon_save" 48 onclick="var d=document; d.getElementById('wait-img').style.display='inline'; setTimeout(function({d.getElementById('_editItemForm').submit();},300); return false;">{% trans "Save" %}</a> 47 <a href="#" class="component_icon button icon_save" onclick="var d=document; d.getElementById('wait-img').style.display='inline'; setTimeout(function(){d.getElementById('_editItemForm').submit();},300); return false;">{% trans "Save" %}</a> 49 48 <img id="wait-img" style="display:none" style="vertical-align:middle" alt="wait" src="{% url telemeta-images "wait.gif" %}" /> 50 49 </div> -
example/sandbox_sqlite/settings.py
rb732ea0 rda3dd5d 85 85 'django.contrib.messages.middleware.MessageMiddleware', 86 86 'django.middleware.locale.LocaleMiddleware', 87 'pagination.middleware.PaginationMiddleware', 88 'django.contrib.auth.backends.ModelBackend', 89 'socialregistration.contrib.facebook.auth.FacebookAuth', 87 90 ) 88 91 … … 107 110 'jsonrpc', 108 111 'south', 112 'postman', 113 'pagination', 114 'socialregistration', 115 'socialregistration.contrib.facebook', 109 116 'sorl.thumbnail', 110 117 ) … … 132 139 EMAIL_HOST = 'localhost' 133 140 DEFAULT_FROM_EMAIL = 'webmaster@parisson.com' 141 142 POSTMAN_AUTO_MODERATE_AS=True 143 144 FACEBOOK_APP_ID = '348560078520326' 145 FACEBOOK_SECRET_KEY = 'f6204a5468be878bfce8f0007455c022' 146 FACEBOOK_REQUEST_PERMISSIONS = '' -
telemeta/templates/telemeta/base.html
rfabced9 r1f3e307 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 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.
