Hiroshi Miura
|
a95825ede8
|
python3 compatibility
- Things are suggested in python3 porting guide.
https://docs.djangoproject.com/en/1.8/topics/python3/
1. adding ```from django.utils.encoding import
python_2_unicode_compatible```
2. ``` __str__``` instead of ```__unicode__```
https://docs.djangoproject.com/en/1.8/topics/python3/#str-and-unicode-methods
3. Adding ```from __future__ import unicode_literals``` at the top
of your Python modules
https://docs.djangoproject.com/en/1.8/topics/python3/#unicode-literals
4. Removing the `u` prefix before unicode strings;
https://docs.djangoproject.com/en/1.8/topics/python3/#unicode-literals
- also closed #66
Signed-off-by: Hiroshi Miura <miurahr@linux.com>
|
2015-08-03 23:32:25 +09:00 |
|
Carlos Henrique Romano
|
36ab6d599f
|
Fix flake8 warnings
|
2014-07-30 15:19:26 -03:00 |
|
Luke Hatcher
|
7f0c8496c7
|
fix email bug with teams
|
2012-08-14 17:22:54 -04:00 |
|
James Tauber
|
0dbcbea100
|
added manager permissions
|
2012-08-07 23:28:15 -04:00 |
|
James Tauber
|
7db401e9a2
|
show members and applicants on team detail page
|
2012-08-02 13:03:16 -04:00 |
|
James Tauber
|
a907b78bd1
|
added helper method to determine team membership state for a user
|
2012-07-28 18:29:19 -04:00 |
|
James Tauber
|
283ac696ef
|
teams model tweaks and initial dashboard
|
2012-07-28 18:10:15 -04:00 |
|
James Tauber
|
69d3df83c1
|
initial team models and admin
|
2012-07-28 17:05:01 -04:00 |
|