mirror of
https://github.com/thecyberlearn/quantum-ai-v3.git
synced 2026-08-18 10:12:58 +00:00
🔧 Fix wallet NoReverseMatch error - update agent_base references
- Updated wallet templates to use workflows:marketplace instead of agent_base:marketplace - Fixed error page templates (404, 403, 500) with correct namespace - Fixed quick agents panel component reference - Wallet should now work properly without namespace errors 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
94a8655449
commit
fe6dbe1e58
@ -1,14 +1,10 @@
|
||||
=== Documentation Auto-Update Summary ===
|
||||
Update Date: 2025-07-29 20:04:46
|
||||
Update Date: 2025-07-29 20:08:47
|
||||
|
||||
Recent Commits:
|
||||
- 94a8655 Improve marketplace layout: search above, category buttons below
|
||||
- bc160b1 🎯 Keep only working agents and simplify marketplace view
|
||||
- ec42b51 🗑️ Complete agent_base app removal and legacy cleanup
|
||||
- 73d5141 ✅ All agents working: Direct N8N integration, fixed routing, and pricing sync
|
||||
|
||||
Agents Changes:
|
||||
- workflows/config/agents.py
|
||||
- workflows/templates/workflows/components/quick_agents_panel.html
|
||||
|
||||
Documentation Changes:
|
||||
- CLAUDE.md
|
||||
@ -19,8 +15,6 @@ Frontend Changes:
|
||||
Backend Changes:
|
||||
- docs_update_summary.txt
|
||||
|
||||
Updated Documentation Files:
|
||||
- /home/amit/projects/quantum_ai_v2/CLAUDE.md
|
||||
- /home/amit/projects/quantum_ai_v2/docs/development/agent-creation.md
|
||||
No documentation files required updates.
|
||||
|
||||
=== End Summary ===
|
||||
@ -53,7 +53,7 @@
|
||||
<span class="btn-icon">🏠</span>
|
||||
Go Home
|
||||
</a>
|
||||
<a href="{% url 'agent_base:marketplace' %}" class="btn btn-secondary">
|
||||
<a href="{% url 'workflows:marketplace' %}" class="btn btn-secondary">
|
||||
<span class="btn-icon">🤖</span>
|
||||
Browse AI Agents
|
||||
</a>
|
||||
@ -98,7 +98,7 @@
|
||||
<a href="mailto:support@quantumtaskai.com" class="support-link">
|
||||
📧 Contact Support
|
||||
</a>
|
||||
<a href="{% url 'agent_base:marketplace' %}" class="support-link">
|
||||
<a href="{% url 'workflows:marketplace' %}" class="support-link">
|
||||
🤖 View Available Agents
|
||||
</a>
|
||||
</div>
|
||||
|
||||
@ -43,7 +43,7 @@
|
||||
<span class="btn-icon">🏠</span>
|
||||
Go Home
|
||||
</a>
|
||||
<a href="{% url 'agent_base:marketplace' %}" class="btn btn-secondary">
|
||||
<a href="{% url 'workflows:marketplace' %}" class="btn btn-secondary">
|
||||
<span class="btn-icon">🤖</span>
|
||||
Browse AI Agents
|
||||
</a>
|
||||
@ -87,7 +87,7 @@
|
||||
<div class="help-content">
|
||||
<p class="help-text">Can't find what you're looking for?</p>
|
||||
<div class="help-actions">
|
||||
<a href="{% url 'agent_base:marketplace' %}" class="help-link">
|
||||
<a href="{% url 'workflows:marketplace' %}" class="help-link">
|
||||
🔍 Browse All Agents
|
||||
</a>
|
||||
<a href="{% url 'core:pricing' %}" class="help-link">
|
||||
|
||||
@ -50,7 +50,7 @@
|
||||
<span class="btn-icon">🏠</span>
|
||||
Go Home
|
||||
</a>
|
||||
<a href="{% url 'agent_base:marketplace' %}" class="btn btn-secondary">
|
||||
<a href="{% url 'workflows:marketplace' %}" class="btn btn-secondary">
|
||||
<span class="btn-icon">🤖</span>
|
||||
Browse AI Agents
|
||||
</a>
|
||||
|
||||
@ -49,6 +49,6 @@
|
||||
</div>
|
||||
|
||||
<div class="quick-agents-footer">
|
||||
<a href="{% url 'agent_base:marketplace' %}" class="view-all-agents">View All Agents →</a>
|
||||
<a href="{% url 'workflows:marketplace' %}" class="view-all-agents">View All Agents →</a>
|
||||
</div>
|
||||
</div>
|
||||
@ -700,7 +700,7 @@
|
||||
<div class="empty-state">
|
||||
<div class="empty-icon">📭</div>
|
||||
<p class="empty-text">No transactions yet. Start using AI agents to see your transaction history!</p>
|
||||
<a href="{% url 'agent_base:marketplace' %}" class="btn btn-primary">🤖 Browse Agents</a>
|
||||
<a href="{% url 'workflows:marketplace' %}" class="btn btn-primary">🤖 Browse Agents</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
@ -719,7 +719,7 @@
|
||||
<a href="{% url 'wallet:wallet_topup' %}" class="action-btn">
|
||||
💳 Top Up Wallet
|
||||
</a>
|
||||
<a href="{% url 'agent_base:marketplace' %}" class="action-btn">
|
||||
<a href="{% url 'workflows:marketplace' %}" class="action-btn">
|
||||
🤖 Browse Agents
|
||||
</a>
|
||||
<a href="{% url 'core:homepage' %}" class="action-btn">
|
||||
|
||||
@ -568,7 +568,7 @@
|
||||
<a href="{% url 'wallet:wallet' %}" class="action-btn">
|
||||
📊 View Transactions
|
||||
</a>
|
||||
<a href="{% url 'agent_base:marketplace' %}" class="action-btn">
|
||||
<a href="{% url 'workflows:marketplace' %}" class="action-btn">
|
||||
🤖 Browse Agents
|
||||
</a>
|
||||
<a href="{% url 'core:homepage' %}" class="action-btn">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user