Форум сайта python.su
Точно так же. Что не так-то?
Офлайн
Ferroman, вот html-код, генерируемый стандартной формой {% render_comment_form for post %}:
<form action="/comments/post/" method="post">
<input type="hidden" name="content_type" value="core.post" id="id_content_type" />
<input type="hidden" name="object_pk" value="1" id="id_object_pk" />
<input type="hidden" name="timestamp" value="1262627471" id="id_timestamp" />
<input type="hidden" name="security_hash" value="87a62db1207304631bafe6000e0873f1efd1f801" id="id_security_hash" />
<p>
<label for="id_name">Name</label> <input id="id_name" type="text" name="name" maxlength="50" />
</p>
<p>
<label for="id_email">Email address</label> <input type="text" name="email" id="id_email" />
</p>
<p>
<label for="id_url">URL</label> <input type="text" name="url" id="id_url" />
</p>
<p>
<label for="id_comment">Comment</label> <textarea id="id_comment" rows="10" cols="40" name="comment"></textarea>
</p>
<p style="display:none;">
<label for="id_honeypot">If you enter anything in this field your comment will be treated as spam</label> <input type="text" name="honeypot" id="id_honeypot" />
</p>
<p class="submit">
<input type="submit" name="post" class="submit-post" value="Post" />
<input type="submit" name="preview" class="submit-preview" value="Preview" />
</p>
</form>
{% get_comment_form for post as form %}
<table>
<form action="{% comment_form_target %}" method="POST">
<tr>
<td>Name:<td>{{ form.name }}</td>
</tr>
<tr>
<td>E-mail:<td>{{ form.email }}</td>
</tr>
<tr>
<td colspan="2">{{ form.comment }}</td>
</tr>
<tr>
<td colspan="2"><input type="submit" name="preview" class="submit-post" value="Preview"></td>
</tr>
</form>
</table>
Офлайн
o_O
Ээээ, ….
<input type=“hidden” name=“content_type” value=“core.post” id=“id_content_type” />
<input type=“hidden” name=“object_pk” value=“1” id=“id_object_pk” />
<input type="hidden" name="content_type" value="{{form.content_type}}" id="id_content_type" />
<input type="hidden" name="object_pk" value="{{form.object_pk}}" id="id_object_pk" />
Отредактировано (Янв. 4, 2010 20:50:30)
Офлайн
Ferroman что-то я пропустила эту страничку в документации ( Теперь всё исправила.
Офлайн
FerromanПомогите пожалуйста…
user_url = None?
Офлайн