The view being shown when using Sphinx on a Django site is:
The beginning of my views.py is:
import os
from django.shortcuts import render, redirect
from django.urls import reverse
from django.http import HttpResponse, HttpResponseRedirect
from django.utils import timezone
from . forms import PlayForm, RollForm, checkBoard, BossForm
from random import randint
from . templatetags.playExtras import translateDice
from .models import Board, Winner, Boss
def getFirstFolder(req):
""" return the string between first two / - this is a hack, find out how to do it with the object """
r = req.split("'")
loc = r[1].find('/',1)
x = r[1][1:loc]
return(x)
def loadBoard(request,context,location=''):
''' Load the board from the database into context. Add a hyperlink for available squares.
:param context: context for template
:type context: dictionary
:param location: Comma seperated string of available locations or empty string so no links included.
:type location: str
:return: 'not on the board' or 'all taken' or comma seperated string of location options such as 'A0,B0'
:rtype: str
'''
req = request.__str__()
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/e53d3f68-b008-4d4a-a9bd-74d1af57337c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:
Post a Comment