Index: media/dijital/img/forum/terazi.jpg
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: media/dijital/img/forum/terazi.jpg
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Index: templates/forum/topic.html
===================================================================
--- templates/forum/topic.html	(revision 1469)
+++ templates/forum/topic.html	(working copy)
@@ -30,6 +30,8 @@
         {% if perms.forum.can_see_post_ip %}({{ post.ip }})<br/>{% endif %}
         Kayıt Tarihi: {{ post.author.date_joined|date:"d-m-Y" }}<br/>
         <a href="/kullanici/profil/{{ post.author }}"><img src="/media/dijital/img/forum/bilgi.jpg" alt="bilgi" border="0" /></a><br/>
+        <a href="/kullanici/rep/{{ post.author }}"><img src="/media/dijital/img/forum/terazi.jpg" alt="terazi" border="0" /></a><br/>
+        Rep: {{ post.author.rep }}
     </div>
     <div class="post_message">
         <div class="post_message_top">
Index: profile/views.py
===================================================================
--- profile/views.py	(revision 1469)
+++ profile/views.py	(working copy)
@@ -125,6 +125,16 @@
         del info
     return render_response(request, 'user/profile.html', locals())
 
+@login_required
+def user_rep(request, name):
+    info = get_object_or_404(User, username=name)
+    info.rep += 1
+    info.save()
+    apikey = googleMapsApiKey
+    if not info.is_active:
+        del info
+    return render_response(request, 'user/profile.html', locals())
+
 def user_register(request):
     if request.method == 'POST':
         form = RegisterForm(request.POST)
Index: profile/models.py
===================================================================
--- profile/models.py	(revision 1469)
+++ profile/models.py	(working copy)
@@ -89,6 +89,7 @@
     signature = models.TextField('İmza', blank=True, max_length=512)
     latitude = models.DecimalField('Enlem', max_digits=10, decimal_places=6, default=0)
     longitude = models.DecimalField('Boylam', max_digits=10, decimal_places=6, default=0)
+    rep = models.DecimalField('Rep', max_digits=10, decimal_places=6, default=0)
 
     def __unicode__(self):
         return self.user.username
Index: profile/urls.py
===================================================================
--- profile/urls.py	(revision 1469)
+++ profile/urls.py	(working copy)
@@ -33,4 +33,5 @@
     (r'^kayip/degistir/(?P<key>[\w-]+)/$', 'oi.profile.views.reset_password'),
     #(r'^kullanici/(?P<name>[\w-]+)/yorumlar/$', 'oi.profile.views.user_comments'),
     (r'^profil/(?P<name>[\w-]+)/$', 'oi.profile.views.user_profile'),
+    (r'^rep/(?P<name>[\w-]+)/$', 'oi.profile.views.user_rep'),
 )
