Dodanie komunikatów o błędach, gdy nie zostanie wpisana nazwa użytkownika lub opis...
authorMarek Stępniowski <marek@stepniowski.com>
Fri, 7 Aug 2009 14:05:12 +0000 (16:05 +0200)
committerMarek Stępniowski <marek@stepniowski.com>
Fri, 7 Aug 2009 14:05:12 +0000 (16:05 +0200)
project/static/css/master.css
project/templates/explorer/file_xml.html

index 87262b5..a80c82b 100644 (file)
@@ -86,3 +86,18 @@ textarea {
     overflow-y: scroll;
     overflow-x: hidden;
 }
+
+.errorlist {
+    color: red;
+    margin: 0 20px 0 0;
+    padding: 0;
+    float: left;
+}
+
+.errorlist:before {
+    content: '';
+    clear: both;
+}
+p { 
+    margin: 0;
+}
\ No newline at end of file
index ad55a88..08e42e4 100644 (file)
@@ -66,6 +66,9 @@
     <form action="." method="post" accept-charset="utf-8">
         <div id="buttons"></div>
         {{ form.text }}
-        <p>Użytkownik: {{ form.user }} Opis zmian: {{ form.commit_message }} <input type="submit" value="Zapisz"/></p>
+        {{ form.user.errors }}
+        <p>Użytkownik: {{ form.user }}</p> 
+        {{ form.commit_message.errors }}
+        <p>Opis zmian: {{ form.commit_message }} <input type="submit" value="Zapisz"/></p>
     </form>
 {% endblock maincontent %}