Welcome to Kijimi! This space is a temporary community that exists so we can discuss Star Wars: Rise of Skywalker without spoiling friends who haven't seen it yet. Spoilers are allowed in cleartext in all channels.
The current admins are:
- Annalee.
Welcome to Jakku-- a discussion community for Star Wars: The Force Awakens.
This space is an experiment in temporary community. It exists so we can discuss Star Wars without spoiling friends who haven't seen it yet. Spoilers are allowed in cleartext in all channels. If you haven't seen the movie yet, you're in the wrong place.
We want this to be a fun, pleasant, and harassment-free experience for everyone, regardless of gender, gender identity and expression, sexual orientation, disability, physical appearance, body size, race, or religion. We do not tolerate harassment of participants in any form. Participants asked to stop any harassing behavior are expected to comply immediately.
Definitions
The code below is from a django project for a kickstarter-like funding platform.
This is the view for the individual project page, which shows the project's title, description, and featured image, and asks the user to donate to the project. The page provides four suggested donation amounts, with a fifth option for the user to write in a custom amount. The minimum donation is $5. The max is $1000. The median is $20.
def project_page(request, slug):
project = get_object_or_404(Project.objects.get(slug=slug, published=True))
featured_image = project.featured_image
account = project.account