Setting up basic UI. #1135

This commit is contained in:
Eric Davis
2008-05-20 16:53:03 -07:00
parent 5919d7b177
commit eb2c22bd69
3 changed files with 52 additions and 1 deletions

View File

@@ -0,0 +1,3 @@
<h3>Budget</h3>
<%= link_to l(:label_issue_view_all), { :controller => 'issues', :action => 'index', :project_id => @project, :set_filter => 1 } %><br />
<%= link_to_function "New Deliverable", "$('new-deliverable').toggle();" %><br />

View File

@@ -1 +1,47 @@
<h1>Deliverables</h1>
<div id="budget-summary">
<h2>Budget</h1>
<p>
Project Budget: TODO
</p>
<p>
Budget Spent: TODO
</p>
<p>
Budget Remaining: TODO
</p>
<p>
Progress: TODO
</p>
<p>
Budget Score: TODO
</p>
<p>
Overruns: TODO
</p>
<p>
Next Due Date: TODO
</p>
<p>
Completion: TODO
</p>
<p>
Profit: TODO
</p>
</div>
<div id="new-deliverable" style="display:none;">
TODO
</div>
<div id="budget-list">
</div>
<% content_for :sidebar do %>
<%= render :partial => 'deliverables/sidebar' %>
<% end %>
<% content_for :header_tags do %>
<%= stylesheet_link_tag "budget.css", :plugin => "budget_plugin", :media => "screen" %>
<% end %>

View File

@@ -0,0 +1,2 @@
#budget-summary { background-color:#507AAA;padding:10px; }
#budget-list { }