Random Quotes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
# model
class Quote(models.Model):
    quote = models.TextField(help_text="Enter the quote")
    by = models.CharField(maxlength=30, help_text="Enter the quote author")
    slug = models.SlugField(prepopulate_from=("by", "quote"), maxlength=25)
    def __str__(self):
        return (self.quote)

# template tag
from django import template
register = template.Library()
from website.quotes.models import Quote

@register.simple_tag
def random_quote():
    """
    Returns a random quote
    """
    quote = Quote.objects.order_by('?')[0]
 
    return str(quote)

More like this

  1. Random code tag by aaloy 5 years, 10 months ago
  2. shuffle templatetag by deanmalmgren 2 years, 2 months ago
  3. Formalchemy hack for newforms-based form validation by erob 4 years, 4 months ago
  4. Extended Paginator by davisp 5 years, 8 months ago
  5. "for" template tag with support for "else" if array is empty by jezdez 5 years, 4 months ago

Comments

(Forgotten your password?)