Added urls.
authorŁukasz Rekucki <lrekucki@gmail.com>
Thu, 8 Oct 2009 15:33:54 +0000 (17:33 +0200)
committerŁukasz Rekucki <lrekucki@gmail.com>
Thu, 8 Oct 2009 15:33:54 +0000 (17:33 +0200)
project/static/css/managment.css [new file with mode: 0644]
project/templates/manager/pull_request.html

diff --git a/project/static/css/managment.css b/project/static/css/managment.css
new file mode 100644 (file)
index 0000000..3777bcf
--- /dev/null
@@ -0,0 +1,36 @@
+table.request-report 
+{
+    border: 2px groove black;
+    font-size: 12pt;
+
+    margin-top: 3em;
+    margin-bottom: 2em;
+    margin-left: auto;
+    margin-right: auto;
+}
+
+.request-report td, .request-report th  {
+    vertical-align: top;
+    border-right: 1px solid black;
+    border-bottom: 1px solid black;
+
+    padding: 0.4em 1em;
+    margin: 0em;
+}
+
+.request-report th {
+    background-color: black;
+    color: white;
+}
+
+.request-report .status-N {
+    background-color: teal;
+}
+
+.request-report .status-R {
+    background-color: red;
+}
+
+.request-report .status-A {
+    background-color: gray;
+}
\ No newline at end of file
index c902da9..20e47fa 100644 (file)
@@ -35,7 +35,7 @@
             
 
             $.ajax({
-                url: '{% url pullrequest_list  %}/'+id,
+                url: '{% url pullrequest_list %}/'+id,
                 data: {action: 'accept'},
                 dataType: 'json',
                 type: 'PUT',