Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
# Markdown content with outline, emojis, links, and start-fast indicators
|
4 |
+
markdown_content = """
|
5 |
+
# M365-Compatible Flow & Kanban Options π
|
6 |
+
|
7 |
+
---
|
8 |
+
|
9 |
+
### Microsoft Options
|
10 |
+
- **π Microsoft Planner (Kanban)**
|
11 |
+
- [Test It](https://tasks.office.com/) (Log in with M365)
|
12 |
+
- **Start Fast?** β
Yes β Free with M365, add as a Teams tab, drag-and-drop in minutes.
|
13 |
+
- **β‘ Microsoft Power Automate (Flow)**
|
14 |
+
- [Test It](https://make.powerautomate.com/) (M365 login)
|
15 |
+
- **Start Fast?** β οΈ Kinda β Templates are quick, but custom flows need some learning.
|
16 |
+
- **ποΈ Microsoft Lists (Kanban + Light Flow)**
|
17 |
+
- [Test It](https://lists.live.com/) (M365 SharePoint)
|
18 |
+
- **Start Fast?** β
Yes β Simple board view, M365-native, tweakable out of the box.
|
19 |
+
- **π Azure Boards (Advanced Kanban)**
|
20 |
+
- [Test It](https://azure.microsoft.com/en-us/services/devops/boards/) (Free tier signup)
|
21 |
+
- **Start Fast?** β No β Needs Azure setup, better for tech-savvy teams.
|
22 |
+
|
23 |
+
---
|
24 |
+
|
25 |
+
### Non-Microsoft (M365-Compatible)
|
26 |
+
- **π΄ Trello (Kanban)**
|
27 |
+
- [Test It](https://trello.com/) (Free signup)
|
28 |
+
- **Start Fast?** β
Yes β Free tier, intuitive, Teams integration in a snap.
|
29 |
+
- **π Asana (Kanban + Flow)**
|
30 |
+
- [Test It](https://asana.com/) (Free signup)
|
31 |
+
- **Start Fast?** β
Yes β Free plan, quick Kanban setup, basic automation included.
|
32 |
+
- **π¨ Monday.com (Kanban + Flow)**
|
33 |
+
- [Test It](https://monday.com/) (Free trial)
|
34 |
+
- **Start Fast?** β οΈ Kinda β Trial is slick, but full setup takes tweaking.
|
35 |
+
- **π οΈ Virto Kanban Board (Kanban for SharePoint)**
|
36 |
+
- [Test It](https://www.virtosoftware.com/sharepoint/kanban-board/) (Trial request)
|
37 |
+
- **Start Fast?** β οΈ Kinda β SharePoint-based, fast if you know M365, trial needs a request.
|
38 |
+
|
39 |
+
---
|
40 |
+
|
41 |
+
### Quick Pick
|
42 |
+
- **Fastest Start**: π **Planner** or π΄ **Trello** β Zero learning curve, M365-ready.
|
43 |
+
- **Flow + Kanban**: β‘ **Power Automate** + π **Planner** (M365) or π **Asana** (standalone).
|
44 |
+
"""
|
45 |
+
|
46 |
+
# Streamlit app setup
|
47 |
+
st.title("M365 Flow & Kanban Options Explorer")
|
48 |
+
st.markdown(markdown_content, unsafe_allow_html=True) # Render Markdown with links
|
49 |
+
st.write("Click the 'Test It' links to try each tool!")
|