ユーザーと一緒に小さなDjangoアプリを作成していて、独自のUserProfileモデルを作成しました。しかし、URLにいくつか問題があります(少なくとも私は思います)。私が使った正規表現は間違っていると思います。見てみな:
私が得るエラー:
ValueError at /usr/tony/
invalid literal for int() with base 10: 'tony'
私のURL:
url(r'^usr/(?P<username>\w+)/$', 'photocomp.apps.users.views.Userprofile'),
私の見解:
from django.shortcuts import render_to_response, get_object_or_404
from django.template import RequestContext
from django.contrib import auth
from django.http import HttpResponseRedirect
from photocomp.apps.users.models import UserProfile
def Userprofile(request, username):
rc = context_instance=RequestContext(request)
u = UserProfile.objects.get(user=username)
return render_to_response("users/UserProfile.html",{'user':u},rc)
これが私のモデルです:
from django.db import models
from django.contrib.auth.models import User
class UserProfile(models.Model):
user = models.ForeignKey(User, unique=True)
first_name = models.CharField(max_length="30", blank=True)
last_name = models.CharField(max_length="30", blank=True)
email = models.EmailField(blank=True)
country = models.CharField(blank=True,max_length="30")
date_of_birth = models.DateField(null=True)
avatar = models.ImageField(null=True, upload_to="/avatar")