├── .gitignore ├── README └── python_people ├── __init__.py ├── bootstrap_tags ├── __init__.py ├── templates │ └── bootstrap_tags │ │ └── form_field.html └── templatetags │ ├── __init__.py │ └── bootstrap_tags.py ├── context_processors.py ├── deploy ├── requirements.txt ├── sites-enabled.txt └── slice.wsgi ├── docs └── icons_tests.svg ├── manage.py ├── pagseguro ├── __init__.py ├── models.py ├── settings.py ├── templates │ └── pagseguro │ │ ├── return.html │ │ └── status.html ├── tests.py ├── urls.py └── views.py ├── people ├── __init__.py ├── admin.py ├── forms.py ├── models.py ├── static │ └── img │ │ ├── python_logo_f.png │ │ ├── python_logo_m.png │ │ ├── python_logo_other.png │ │ ├── python_logo_shadow.png │ │ ├── python_logo_user_grupy.png │ │ └── python_logo_user_grupy_shadow.png ├── templates │ └── people │ │ ├── placemarks.kml │ │ ├── pythongroup_detail.html │ │ ├── pythongroup_form.html │ │ ├── pythongroup_list.html │ │ ├── register_form.html │ │ ├── survey_form.html │ │ ├── userprofile_detail.html │ │ ├── userprofile_form.html │ │ └── userprofile_list.html ├── tests.py ├── urls.py └── views.py ├── settings.py ├── static ├── bootstrap-2.2.2 │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js ├── css │ ├── base-min.css │ ├── base.css │ ├── bootstrap.css │ └── bootstrap.min.css ├── img │ ├── glyphicons_382_google_plus.png │ ├── glyphicons_397_linked_in.png │ ├── glyphicons_410_facebook.png │ ├── glyphicons_411_twitter.png │ ├── python_logo.png │ ├── python_logo_circle.png │ ├── pythonpeople.jpeg │ ├── pythonpeople.jpg │ ├── pythonpeople_250X200.jpg │ ├── pythonpeople_500X350.jpg │ ├── pythonpeople_800X600.jpg │ ├── pythonpeople_button.png │ ├── pythonpeople_twitter.jpg │ ├── pythonpeople_twitter_picture.jpg │ ├── pythonpeople_twitter_picture_2.jpg.png │ ├── sign-in-with-twitter-d.png │ ├── sign-in-with-twitter-gray.png │ ├── sign-in-with-twitter-link.png │ ├── subtle_carbon.png │ ├── twitter-loggingwith.gif │ └── txture.png └── js │ ├── bootstrap │ ├── bootstrap-alerts.js │ └── bootstrap-modal.js │ ├── jquery-1.6.4.min.js │ ├── jquery-1.8.3.min.js │ ├── jquery-ui-1.8.16.custom.min.js │ ├── map_functions.js │ └── map_functions.min.js ├── templates ├── 404.html ├── 500.html ├── about.html ├── auth │ ├── user_detail.html │ └── user_list.html ├── base.html ├── form_field.html ├── home.html ├── login.html ├── placemarks.kml └── registration │ ├── password_change_form.html │ ├── password_reset_complete.html │ ├── password_reset_confirm.html │ ├── password_reset_done.html │ ├── password_reset_email.html │ └── password_reset_form.html └── urls.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .project 3 | .pydevproject 4 | *~ 5 | settings_local.py 6 | 7 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadu-leite/python-people/6d94d289bf95258e9f4904d449f2ac80804f510f/README -------------------------------------------------------------------------------- /python_people/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadu-leite/python-people/6d94d289bf95258e9f4904d449f2ac80804f510f/python_people/__init__.py -------------------------------------------------------------------------------- /python_people/bootstrap_tags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cadu-leite/python-people/6d94d289bf95258e9f4904d449f2ac80804f510f/python_people/bootstrap_tags/__init__.py -------------------------------------------------------------------------------- /python_people/bootstrap_tags/templates/bootstrap_tags/form_field.html: -------------------------------------------------------------------------------- 1 | {{ field.label_tag }} 2 |
8CF4BE7DCECEF0F004A6DFA0A8243412
27 | 11004
35 | 11005
39 | Use your e-mail address as username
16 | 17 | 18 |GitHub - https://github.com/znc-sistemas/python-people
9 |Few free to propose new features and report bugs
10 | 11 | 12 | 13 | 14 |The main goal of this site, is to keep a fresh statistics about python comunity.
18 |We hope soon start some polls about python language
19 |25 | Python developers already know Python Language is great, and can be used in a large number of applications in such many ways. 26 | Lets put this on map and in math!
27 |The site do not have all these answers, not yet!
28 |To keep track of the news, follow us on twitter
29 | Follow @pythonpeople 30 | 31 |35 |
{{ object.get_profile.bio }}