- Changed ownership of all files to scheianu:scheianu - Set directories to 755 permissions (rwxr-xr-x) - Set files to 644 permissions (rw-r--r--) - Made shell scripts executable (755) - Allows development without requiring sudo for file modifications - Improves development workflow and security
12 lines
306 B
HTML
12 lines
306 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Edit Content{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<h2>Edit Content</h2>
|
|
<p>Edit content functionality - placeholder</p>
|
|
<a href="{{ url_for('content.list') }}" class="btn btn-secondary">Back to Content</a>
|
|
</div>
|
|
{% endblock %}
|