Korektury: zobrazuj celé jméno autora
This commit is contained in:
parent
3f029857dd
commit
426e1cc569
2 changed files with 3 additions and 2 deletions
|
@ -26,7 +26,7 @@
|
|||
<!-- Pridat korekturu / komentar !-->
|
||||
<form action='' onsubmit='save_scroll(this)' id="commform" method="POST">
|
||||
{% csrf_token %}
|
||||
<input size="8" name="au" value="{{user.username}}"/>
|
||||
<input size="24" name="au" value="{{user.first_name}} {{user.last_name}}" readonly/>
|
||||
<input type=submit value="Oprav!"/>
|
||||
<button type="button" onclick="close_commform()">Zavřít</button>
|
||||
<br/>
|
||||
|
|
|
@ -30,7 +30,8 @@ class KorekturyView(generic.TemplateView):
|
|||
q = request.POST
|
||||
scroll = q.get('scroll')
|
||||
autor = q.get('au')
|
||||
print "autor:" + str(autor)
|
||||
|
||||
print "autor:" + unicode(autor)
|
||||
if not autor:
|
||||
autor = 'anonym'
|
||||
if not scroll:
|
||||
|
|
Loading…
Reference in a new issue