<%= flash_messages %>

<div id="filter" class="subnav">
	<div class="filters">
		<div id="sort_headers" class="table-label">
			<table class="table main-list">	
				<thead>
					<tr>
						<th class="span2"><%= t('asset_category.key') %></th>
						<% @site_valid_locales.each do |locale| %>
						<th class="span2"><%= I18nVariable.first(:conditions => {:key => locale})[I18n.locale] %></th>
						<% end %>
					</tr>
				</thead>
			</table>
		</div>
	</div>
</div>


<table id="asset_categories" class="table main-list">
	<thead>
		<tr>
			<th class="span2"></th>
			<% @site_valid_locales.each do |locale| %>
			<th class="span2"></th>
			<% end %>
		</tr>
	</thead>
	<tbody>

	<%= render :partial => 'asset_category', :collection => @asset_categories %>
	
	</tbody>
</table>

<div id="form"><%= render :partial => "form" %></div>