File size: 2,258 Bytes
14c0c96
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import streamlit as st

# Markdown content with outline, emojis, links, and start-fast indicators
markdown_content = """
# M365-Compatible Flow & Kanban Options πŸš€

---

### Microsoft Options
- **πŸ“‹ Microsoft Planner (Kanban)**  
  - [Test It](https://tasks.office.com/) (Log in with M365)  
  - **Start Fast?** βœ… Yes – Free with M365, add as a Teams tab, drag-and-drop in minutes.  
- **⚑ Microsoft Power Automate (Flow)**  
  - [Test It](https://make.powerautomate.com/) (M365 login)  
  - **Start Fast?** ⚠️ Kinda – Templates are quick, but custom flows need some learning.  
- **πŸ—‚οΈ Microsoft Lists (Kanban + Light Flow)**  
  - [Test It](https://lists.live.com/) (M365 SharePoint)  
  - **Start Fast?** βœ… Yes – Simple board view, M365-native, tweakable out of the box.  
- **πŸš€ Azure Boards (Advanced Kanban)**  
  - [Test It](https://azure.microsoft.com/en-us/services/devops/boards/) (Free tier signup)  
  - **Start Fast?** ❌ No – Needs Azure setup, better for tech-savvy teams.

---

### Non-Microsoft (M365-Compatible)
- **🎴 Trello (Kanban)**  
  - [Test It](https://trello.com/) (Free signup)  
  - **Start Fast?** βœ… Yes – Free tier, intuitive, Teams integration in a snap.  
- **🌟 Asana (Kanban + Flow)**  
  - [Test It](https://asana.com/) (Free signup)  
  - **Start Fast?** βœ… Yes – Free plan, quick Kanban setup, basic automation included.  
- **🎨 Monday.com (Kanban + Flow)**  
  - [Test It](https://monday.com/) (Free trial)  
  - **Start Fast?** ⚠️ Kinda – Trial is slick, but full setup takes tweaking.  
- **πŸ› οΈ Virto Kanban Board (Kanban for SharePoint)**  
  - [Test It](https://www.virtosoftware.com/sharepoint/kanban-board/) (Trial request)  
  - **Start Fast?** ⚠️ Kinda – SharePoint-based, fast if you know M365, trial needs a request.

---

### Quick Pick
- **Fastest Start**: πŸ“‹ **Planner** or 🎴 **Trello** – Zero learning curve, M365-ready.  
- **Flow + Kanban**: ⚑ **Power Automate** + πŸ“‹ **Planner** (M365) or 🌟 **Asana** (standalone).
"""

# Streamlit app setup
st.title("M365 Flow & Kanban Options Explorer")
st.markdown(markdown_content, unsafe_allow_html=True)  # Render Markdown with links
st.write("Click the 'Test It' links to try each tool!")