redfernstech commited on
Commit
635da37
·
verified ·
1 Parent(s): 0ae74ad

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -16,7 +16,8 @@ filtered_jobs = jobs_df[jobs_df['category'] == selected_category]
16
  # Main: Display filtered jobs
17
  st.title("Jobs Dashboard")
18
  st.write(f"Showing jobs in category: **{selected_category}**")
19
- st.dataframe(filtered_jobs[['title']]) # Adjust columns as needed
 
20
 
21
  # Optional: Show a count of jobs in the selected category
22
  st.write(f"Total jobs in this category: {len(filtered_jobs)}")
 
16
  # Main: Display filtered jobs
17
  st.title("Jobs Dashboard")
18
  st.write(f"Showing jobs in category: **{selected_category}**")
19
+ #st.dataframe(filtered_jobs[['title']]) # Adjust columns as needed
20
+ st.dataframe(filtered_jobs[['title','key','description','date']])
21
 
22
  # Optional: Show a count of jobs in the selected category
23
  st.write(f"Total jobs in this category: {len(filtered_jobs)}")