| 1 |
{% extends "base_2col.html" %} |
|---|
| 2 |
|
|---|
| 3 |
{% block sectionid %}community{% endblock %} |
|---|
| 4 |
|
|---|
| 5 |
{% block title %}Community{% endblock %} |
|---|
| 6 |
|
|---|
| 7 |
{% block billboard %}<h2>Community</h2>{% endblock %} |
|---|
| 8 |
|
|---|
| 9 |
{% block content-related %} |
|---|
| 10 |
|
|---|
| 11 |
<h2>Get involved</h2> |
|---|
| 12 |
|
|---|
| 13 |
<ul> |
|---|
| 14 |
<li><a href="irc://irc.freenode.net/django">#django IRC channel</a> -- chat with other Django users</li> |
|---|
| 15 |
<li><a href="http://code.djangoproject.com/simpleticket">Ticket system</a> -- report bugs and make feature requests</li> |
|---|
| 16 |
</ul> |
|---|
| 17 |
|
|---|
| 18 |
<h2>Mailing lists</h2> |
|---|
| 19 |
|
|---|
| 20 |
<p><strong><a href="http://groups.google.com/group/django-users">django-users</a></strong>: The main list for help and announcements.</p> |
|---|
| 21 |
|
|---|
| 22 |
<form action="http://groups.google.com/group/django-users/boxsubscribe"> |
|---|
| 23 |
<p>Subscribe: <input type="text" name="email" size="15" /> <input type="submit" value="Go" /></p> |
|---|
| 24 |
</form> |
|---|
| 25 |
|
|---|
| 26 |
<p><strong><a href="http://groups.google.com/group/django-developers">django-developers</a></strong>: Where the developers of Django itself discuss new features.</p> |
|---|
| 27 |
|
|---|
| 28 |
<form action="http://groups.google.com/group/django-developers/boxsubscribe"> |
|---|
| 29 |
<p>Subscribe: <input type="text" name="email" size="15" /> <input type="submit" value="Go" /></p> |
|---|
| 30 |
</form> |
|---|
| 31 |
|
|---|
| 32 |
<p>Problems subscribing? See this <a href="http://groups.google.com/support/bin/answer.py?answer=19870">FAQ answer</a> about non-Gmail addresses.</p> |
|---|
| 33 |
|
|---|
| 34 |
<h2>Tell the world</h2> |
|---|
| 35 |
<ul> |
|---|
| 36 |
<li><a href="http://code.djangoproject.com/wiki/DjangoPoweredSites">Django-powered sites</a> — add your site to the list</li> |
|---|
| 37 |
<li><a href="/community/badges/">Django badges</a> — show your support (or wish longingly)</li> |
|---|
| 38 |
<li><a href="/community/logos/">Django logos</a> — download official logos</li> |
|---|
| 39 |
<li><a href="/weblog/2005/nov/11/desktops/">Django wallpaper</a> — cover your desktop</li> |
|---|
| 40 |
<li>Write about Django, and <a href="mailto:jacob@jacobian.org">let us know</a>, and we'll add your feed to this page.</li> |
|---|
| 41 |
</ul> |
|---|
| 42 |
|
|---|
| 43 |
<h2>Improve Django</h2> |
|---|
| 44 |
<ul> |
|---|
| 45 |
<li><a href="http://groups.google.com/group/django-updates">django-updates mailing list</a> — get updated for each code and ticket change (for the super-obsessed)</li> |
|---|
| 46 |
<li>Post comments on any page of this site. <a href="/comments/">View recent comments</a>.</li> |
|---|
| 47 |
<li><a href="http://code.djangoproject.com/wiki">Django wiki</a> — contribute tips and documentation</a></li> |
|---|
| 48 |
</ul> |
|---|
| 49 |
|
|---|
| 50 |
<h2>Get help</h2> |
|---|
| 51 |
|
|---|
| 52 |
<ul> |
|---|
| 53 |
<li><strong><a href="http://docs.djangoproject.com/en/dev/faq/">Check our FAQ</a> first</strong>. If you have a basic question that's not answered by the FAQ, <a href="http://code.djangoproject.com/simpleticket">file a ticket</a> to tell us you think it should be in there.</li> |
|---|
| 54 |
<li><strong>Chat live with other Django users</strong> in the <a href="irc://irc.freenode.net/django">#django IRC channel on irc.freenode.net</a>.</li> |
|---|
| 55 |
<li><strong>Ask questions</strong> on the <a href="http://groups-beta.google.com/group/django-users">django-users mailing list</a>.</li> |
|---|
| 56 |
</ul> |
|---|
| 57 |
|
|---|
| 58 |
<h2>Authors</h2> |
|---|
| 59 |
|
|---|
| 60 |
<ul> |
|---|
| 61 |
{% load aggregator %} |
|---|
| 62 |
{% get_feed_list as feed_list %} |
|---|
| 63 |
{% for feed in feed_list %} |
|---|
| 64 |
<li><a href="{{ feed.public_url }}">{{ feed }}</a> <a class="rss" href="{{ feed.feed_url }}">RSS</a></li> |
|---|
| 65 |
{% endfor %} |
|---|
| 66 |
</ul> |
|---|
| 67 |
<p>Do you write about Django? <a href="mailto:jacob@jacobian.org">Let us know</a>, and we'll add your feed to this page.</p> |
|---|
| 68 |
{% endblock %} |
|---|