Changeset d559903
- Timestamp:
- 03/21/12 15:09:11 (14 months ago)
- Branches:
- social
- Children:
- c0733aa
- Parents:
- 24f8534 (diff), 98fa6e9 (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/21/12 15:09:11)
- git-committer:
- yomguy <yomguy@…> (03/21/12 15:09:11)
- Files:
-
- 1 deleted
- 3 edited
-
telemeta/migrations/0009_auto__del_field_userprofile_departement__add_field_userprofile_departm.py (deleted)
-
telemeta/models/system.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/system.py
rb707ce5 r98fa6e9 84 84 user = ForeignKey(User, unique=True, required=True) 85 85 institution = CharField(_('Institution')) 86 department = CharField(_('Department'))87 86 function = CharField(_('Function')) 88 87 attachment = CharField(_('Attachment')) -
example/sandbox_sqlite/settings.py
r1c9efe4 r2c08ff6 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 … … 106 109 'jsonrpc', 107 110 'south', 111 'postman', 112 'pagination', 113 'socialregistration', 114 'socialregistration.contrib.facebook', 108 115 ) 109 116 … … 130 137 EMAIL_HOST = 'localhost' 131 138 DEFAULT_FROM_EMAIL = 'webmaster@parisson.com' 139 140 POSTMAN_AUTO_MODERATE_AS=True 141 142 FACEBOOK_APP_ID = '348560078520326' 143 FACEBOOK_SECRET_KEY = 'f6204a5468be878bfce8f0007455c022' 144 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.
