aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--db/migrate/008_request_has_public_body.rb9
-rw-r--r--public/stylesheets/admin.css22
-rw-r--r--todo.txt2
3 files changed, 31 insertions, 2 deletions
diff --git a/db/migrate/008_request_has_public_body.rb b/db/migrate/008_request_has_public_body.rb
new file mode 100644
index 000000000..c7a2e9f34
--- /dev/null
+++ b/db/migrate/008_request_has_public_body.rb
@@ -0,0 +1,9 @@
+class RequestHasPublicBody < ActiveRecord::Migration
+ def self.up
+ add_column :info_requests, :public_body_id, :integer
+ end
+
+ def self.down
+ remove_column :info_requests, :public_body_id
+ end
+end
diff --git a/public/stylesheets/admin.css b/public/stylesheets/admin.css
new file mode 100644
index 000000000..57d31fb24
--- /dev/null
+++ b/public/stylesheets/admin.css
@@ -0,0 +1,22 @@
+/* FOIFA admin CSS */
+
+table {
+ border-collapse: collapse;
+}
+
+td, th {
+ border: solid 1px #000000;
+}
+
+tr.odd {
+ background-color: #bbbbbb;
+}
+
+tr.even {
+ background-color: #dddddd;
+}
+
+.entry_changed {
+ font-weight: bold;
+}
+
diff --git a/todo.txt b/todo.txt
index fd0f0b31f..d58bffdb1 100644
--- a/todo.txt
+++ b/todo.txt
@@ -1,5 +1,3 @@
-
-Store the letter
Give a better login dialog
public_body_id not set in outgoing_message (maybe not needed)